On the API Credentials page, click the Add Client ID button. The Create Zoho Client ID form will appear.
In this form, enter the following details:
Client Name: Name of your app
Client Domain: Website of your app
Authorized redirect URIs: Redirect URI for authentication. The URI must be entered in the :// format; for example,
myappsdk://
(The URL is case-sensitive).
In the Client Type drop-down list, choose Mobile.
Click the Create button. The Client ID and Client Secret will be displayed.
3.2 Users in Creator 6, follow the below steps:
Click Mobile from the left pane and select the
SDK pane.
Click on the required row of the iOS app for which you want to configure the core framework. The
For User - SDK pane will open on the right.
Click
Generate Client. This will generate the client ID and client secret for the Android app that you want to integrate with your Creator application.
Downloaded the
zcapp_info.properties file, then add it to your project's
raw folder:
"<your_project_folder>/app/src/main/res/raw". (Create a folder named
raw in this location if it doesn't exist)
4. Install the Android SDK
Open Android Studio and choose Import Project.
In the Import Project dialog, select the Utility folder available in the file you downloaded in the previous section.
Open the
zcapp_info.properties in the
app/src/main/res/raw folder and replace the following parameters:
AppOwnerName=<Demo App Owner Name>
AppLinkName=<Demo App Link Name>
CreatorDomain=creator.zoho.com
AccountsDomain=accounts.zoho.com
Open the
strings.xml file and replace the following parameters:
<string name="c_id"> YOUR CLIENT ID </string> <string name="c_secret"> YOUR CLIENT SECRET </string> <string name="redir_url"> REGISTERED REDIRECTURI </string> <string name="accounts_url">https://accounts.zoho.com</string> <!--enter the accounts URL of your respective DC. For eg: EU users use https://accounts.zoho.eu--> <string name="redir_url_for_manifest">REDIRECT URI WITHOUT COLON AND SLASH</string>