Post Kazi Profile SDK
01. Overview:
The Postkazi Profile SDK allows you to seamlessly integrate your Postkazi profile into your website or application, enabling your site visitors users to easily access your Post Kazi user's information and contact you directly. This guide will walk you through the steps to set up and use the Postkazi SDK for this purpose.
02. Prerequisites
- You will need a Postkazi account to use the SDK. If you don't have one, you can sign up at https://postkazi.com.
- Ensure you have the necessary HTML, CSS, and JavaScript capabilities to integrate the SDK into your website or application.
03. Installation
-
Initialize the Postkazi SDK JavaScript
<div id="postkazi-profile"></div> <script src="https://postkazi.com/sdk/v1/sdk.js"></script> <script> // Initialize the Postkazi SDK with your API key Postkazi.init({ apiKey: 'your_postkazi_api_key' }); // Display the Postkazi profile Postkazi.renderProfile({ container: '#postkazi-profile', userId: 'your_postkazi_user_id' }); // Handle user interactions Postkazi.on('click:message', (userId) => { console.log('User clicked the "Message" button for user:', userId); }); Postkazi.on('click:profile', (userId) => { console.log('User clicked the profile for user:', userId); }); </script>
To initialize the Postkazi SDK, call the
Postkazi.init()
function and pass in your Postkazi API key. You can find your API key in your Postkazi account settings.
To integrate the Postkazi SDK, follow these steps:
-
Include the Postkazi SDK script in your HTML file:
<script src="https://postkazi.com/sdk/v1/sdk.js"></script>
-
Create a container element where the Postkazi profile will be rendered:
<div id="postkazi-profile"></div>
04. Initialization
Initialize the Postkazi SDK by calling the Postkazi.init() function and passing in your Postkazi API key:
-
Initialize the Postkazi SDK JavaScript
Postkazi.init({ apiKey: 'your_postkazi_api_key' });
To initialize the Postkazi SDK, call the
Postkazi.init()
function and pass in your Postkazi API key. You can find your API key in your Postkazi account settings.
05. Display the Postkazi Profile JavaScript
To display your Postkazi profile on your website, use the Postkazi.renderProfile() function:
-
Postkazi.renderProfile({ container: '#postkazi-profile', userId: 'your_postkazi_user_id' });
To display your Postkazi profile on your website, use the
Postkazi.renderProfile()
function. Thecontainer
option specifies the ID of the element where the profile will be rendered, and theuserId
option is the unique identifier of your Postkazi user account.
06. Handle User Interactions JavaScript
-
Postkazi.on('click:message', (userId) => { console.log('User clicked the "Message" button for user:', userId); }); Postkazi.on('click:profile', (userId) => { console.log('User clicked the profile for user:', userId); });
The Postkazi SDK provides the following events that you can listen to for user interactions:
click:message
: Triggered when the user clicks the "Message" button to contact you.click:profile
: Triggered when the user clicks your profile picture or name to view your full profile on the Postkazi website.
07. Documentation and Support:
For more detailed information about the Postkazi SDK, including a full list of available options and methods, please refer to the Postkazi SDK documentation
.
If you have any questions or need assistance, feel free to reach out to the Postkazi support team at support@postkazi.com.