Skip to content

BIHappy-Europe/BIHappy.eu-iOS-API

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 

Repository files navigation

BIHappy Europe API (Swift)

This is the official API for BIHappy Europe (BIHappy.eu)

To use this api:

 let BIHappy = BIHappyAPI.sharedInstance
     BIHappy.registerKEY("myAPIkeyGoesHere");
     // In the API settings you can change Sandbox Mode

     // Ask via BIHappy.eu (default)
     BIHappy.login(permissions: ["profile"]) { result in
         if (result) {
             print("Welcome \(BIHappy.user)")
         } else {
             print("Failed")
         }
     }

Or read the wiki