Authenticating Applications
Developers using HERE SDK with their app are required to register for a set of HERE credentials and to specify these credentials (App_Id
, App_Code
, and licenseKey
) in their application. Failure to do so results in blocked access to certain features and degradation in the quality of other services.
To obtain these credentials, visit the developer portal at https://developer.here.com/plans and register for a license. Once your project is created, you can generate these credentials on your Project Details page. If you already have a plan, you can also retrieve these credentials from your Project Details page.
Adding Credentials
app_id
, app_code
and licenseKey
before using HERE SDK. For example, set them in your app delegate: - (BOOL)application:(UIApplication *)application
didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
[NMAApplicationContext setAppId:@"{YOUR_APP_ID}"
appCode:@"{YOUR_APP_CODE}"
licenseKey:@"{YOUR_LICENSE_KEY}"];
return YES;
}