Java · Java 17+
Java SDK für die Modiva API
Ein typisierter Java-Client (Maven / Gradle) für die einheitliche Modiva-API. Ein typisierter Client erreicht alle 38 Integrationen und 460+ Tools über Social, Ads, CRM und E-Commerce — Authentifizierung, Retries, Pagination und Idempotenz werden für dich übernommen.
Installation
ai.modiva:sdk:0.1.0Erfordert Java 17+. Setze MODIVA_API_KEY in deiner Umgebung — der Client liest ihn automatisch.
Schnellstart
Verbinde ein Konto im Dashboard, erstelle einen API-Schlüssel und veröffentliche dann mit wenigen Zeilen.
import ai.modiva.sdk.Modiva;
import ai.modiva.sdk.models.Connection;
import ai.modiva.sdk.models.CreatePostParams;
import java.util.List;
Modiva modiva = Modiva.builder().build(); // reads MODIVA_API_KEY
// List connected accounts
List<Connection> connections = modiva.connections().list();
// Publish a post (idempotent — safe to retry)
modiva.social().posts().create(
CreatePostParams.builder(connections.get(0).id())
.text("Hello from the Modiva Java SDK 👋")
.build());Was du bekommst
- Ein Client für alle 38 Integrationen — keine Bibliothek pro Plattform.
- Typisierte Methoden für Posts, Kommentare, DMs und Analytik plus eine generische Tool-Oberfläche für jedes der 460+ Tools.
- Bearer-Key-Authentifizierung aus
MODIVA_API_KEY; Anbieter-OAuth und Token-Aktualisierung werden serverseitig übernommen. - Automatische Retries mit Backoff, idempotente Creates und integrierte Pagination.
- MIT-lizenziert und Open Source auf GitHub.
Häufig gestellte Fragen
How do I install the Modiva Java SDK?
Run `ai.modiva:sdk:0.1.0`. It requires Java 17+. Then set MODIVA_API_KEY in your environment (create a key in the dashboard) and instantiate the client.
Is the Java SDK free and open source?
Yes — it's MIT-licensed and published on GitHub at modiva-dev/modiva-java. Read the source, file issues and contribute.
Which integrations does the Java SDK support?
All of them. One client reaches every one of the 38 integrations — Instagram, TikTok, Google Ads, HubSpot, Shopify and more — through the same typed methods and a generic tool surface.
Andere Sprachen
Beginne mit Java zu bauen
Kostenlos starten · Erste 3 verbundene Konten gratis · API-Schlüssel mit einem Klick
Kostenloses Konto erstellen