I get the following error message trying to use the easy login:
Given URL is not allowed by the Application configuration.: One or more of the given URLs is not allowed by the App’s settings. It must match the Website URL or Canvas URL, or the domain must be a subdomain of one of the App’s domains.
I’m sure that I did every step described here: https://backendless.com/documentation/users/ios/users_facebook_login.htm for the easy login with facebook procedure.
I put in the application id and secret in the backendless app settings, changed my plist and edited the application:openurl… method.
Then i call the following method (taken from the documentation):
Backendless.sharedInstance().userService.easyLoginWithFacebookFieldsMapping(["email":"email"], permissions: ["email"],
response: {(result : NSNumber!) -> () in
print ("Result: \(result)")
},
error: { (fault : Fault!) -> () in
debugPrint(fault)
})
Can you tell me what could have gone wrong? How can I debug this error message? I copy and pasted all ids and secrets again just to make sure. I even created a new facebook app just to make sure… I am using Swift and the SDK for the iOS platform.
Thanks for your help.