Skip to content

RajeevRShephertz/App42APICodeSamples

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

App42APICodeSamples

  • Before running the sample, Provide "API_KEY" and "SECRET_KEY" in App42ViewController.m
#define API_KEY     @"Your_API_Key"
#define SECRET_KEY  @"Your_Secret_Key"
  • Provide the "gameName" and "userName" in App42ViewController.m in the initialize method
-(void)initializeApp42API
{
    [App42API initializeWithAPIKey:API_KEY andSecretKey:SECRET_KEY]; // Initialize App42API with keys you got after creating
                                                                     // APP on AppHQ Dashboard.
    [App42API enableApp42Trace:YES];// Enable it if you want SDK internal logs to be printed in xcode console
    gameService = [App42API buildGameService]; // Get instance of Game Serveice
    scoreBoardService = [App42API buildScoreBoardService]; // Get instance of ScoreboardService
    
    /**
     *Provide the game name here you want to create by API call or already has created through AppHQ Console.
     */
    gameName = @"YourGameName"; 
                                
    description = @"Description"; // Provide the game description you are going to create on App42
    userName = @"userName"; // Provide the userName for which the score need to be saved to App42
    
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published