As of April 12th, you must go to Progress SupportLink to create new support cases or to access existing cases. Please, bookmark the SupportLink URL and use the new portal to contact the support team.
Laurie,
Can you please try using "connectIdentity()" method for Social identity login as mentioned on the following link and let me know if it solves your problem?
Thanks,
Pranav
I'd try that, but I'm not sure what to pass for the 'session' parameter (maybe the accessToken field of the Facebook authResponse. I did find the following elsewhere on the forums, though it seems really hacky so if I can get connectIdentity to work I'll probably switch to that:
```
Kinvey.User.login({
_socialIdentity: {
facebook: {
access_token: authResponse.accessToken,
expires_in: authResponse.expiresIn,
}
}
}).then(
user => ...
)
```
Hi Laurie,
Please use the Kinvey.User.connectIdentity() method as shown here by passing the access token from the Facebook authResponse. The other methods are deprecated and will be removed from the documentation.
The method you have found is correct - it is actually the object that the the SDK is passing internally through the method above. More information about it can be found in the REST API documentation.
Let me know if this has helped.
Martin, thanks, that definitely helps -- now I know that my solution is valid, as well as how to correctly use the proper API to achieve the same result.
Please consider:
Laurie Harper
According to the v3 migration guide, the guide on users and the User API docs, there should be a connectFacebook() static method on Kinvey.User for handling sign-in via facebook. That method, and the other similar methods for other social platforms, are missing.
I followed the oauth tutorial and set up a Google provider in case the functionality I'm looking for is dependant on having an entry in the oauth collection, but that didn't add a connectGoogle() method to User (or make the connectFacebook() method show up).
What am I doing wrong?
I'm using the HTML5 dev kit, kinvey-html5-sdk@3.10.0 installed with npm.