Title: SDK Locale: en URL: https://sensorswave.com/en/docs/data-center/pipeline/sources/sdk/ Description: Collect application event data into Sensors Wave via client or server SDKs SDK connectors stream user behavior events from mobile, web, and server-side applications into Sensors Wave in real time. Each SDK type maps to its own import pipeline, which provides a unique set of credentials (`source_token` and `endpoint`) upon creation. ## Creating an Import Pipeline Each SDK requires its own import pipeline to obtain the corresponding credentials. 1. Go to **Data Center → Pipeline** and click **Create Pipeline** in the top-right corner. 2. In the dialog, select **Import Pipeline**. 3. Fill in the creation form: | Field | Description | |-------|-------------| | **Name** | Pipeline name — auto-generated, editable (e.g., "iOS Production") | | **Connector** | Select the SDK type: Android / Flutter / Go / Harmony / iOS / JavaScript / React Native / WeChat Mini Program | | **Data Source** | Fixed as **Events** — captures user behavior events from the SDK | | **Description** | Optional — add notes about the pipeline's purpose | 4. Click **Save**. The system creates the pipeline and redirects to the detail page. ## Retrieving Credentials After creation, open the pipeline detail page and go to the **Basic Info** tab. The page displays an SDK initialization code snippet containing two key credentials: - **`endpoint`**: The data ingestion URL, e.g. `https://example.sensorswave.com` - **`source_token`**: The unique token for this pipeline, used for authentication Example initialization code for the Go SDK: ```go client, err := sensorswave.New( sensorswave.Endpoint("https://example.sensorswave.com"), // data ingestion URL sensorswave.SourceToken("your-source-token"), // pipeline token ) ``` > **Note**: The `source_token` is a pipeline-level credential. Keep it secure and do not expose it publicly. Contact your administrator to rotate the token if it is compromised. ## Next Steps Once you have the credentials, follow the corresponding SDK documentation to complete initialization and event tracking: - [Go SDK](/docs/data-integration/server-sdks/go) - [JavaScript SDK](/docs/data-integration/client-sdks/javascript) - [iOS SDK](/docs/data-integration/client-sdks/ios) - [Android SDK](/docs/data-integration/client-sdks/android) --- **Last updated**: April 13, 2026