How can I get the api key to use the Aviary SDK in my ios application

i still downloaded the AVIARY SDK from the official url as well as the demo, but it displays a warning Invalid api key and secret

I also register my iOS demo application in adobecCreativeSDK.Com and get the client secret key as well as the client identifier and then add the keys to my application for use, but it displays the same warning Invalid api and secret key .

Screenshot:

tHIS aLert is displaying wHEN i CHOOSE PHOTO FROM CAMERA ROLL while set both client secret as a api key and client id as a secret key in my app but demo cannot run so how can remove alert from demo of AVAIRY in iOS ALERT IS DIPLAY AS UNDER :

So can anyone help how to resolve this warning. thanks in advance.

+4
source share
1 answer

. .

:

static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        AdobeUXAuthManager *authManager = [AdobeUXAuthManager sharedManager];
        [authManager setAuthenticationParametersWithClientID:@"*****************" clientSecret:@"***************" enableSignUp:YES];
        //        [AVYPhotoEditorController setAPIKey:@"" secret:@""];
    });

. , .

0

All Articles