# setAPIAuthParams

### Set SDK authentication parameters

You can get your API client key and secret following [these instructions](https://create.cloud4wi.ai/dev-hub/api-reference/getting-started#get-your-api-keys).&#x20;

```objectivec
   /**
     * Set client API authentication parameters
     *
     * @param clientKey - API client key
     * @param clientSecret - API client secret
     * @throws Exception if params are invalid
     */
    @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR2)
    public void setAPIAuthParams(String clientKey, String clientSecret) throws Exception;

```
