Skip to content

Latest commit

 

History

History
executable file
·
19 lines (15 loc) · 635 Bytes

README.md

File metadata and controls

executable file
·
19 lines (15 loc) · 635 Bytes

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