A way to authenticate Parse Users using the Twitter Digits API
To call make sure you setup https://fabric.io/ for Twitter login and also setup your project with Parse https://www.parse.com/docs/ios_guide#top/iOS
Drag the PFUser+Digits.m and PFUser+Digits.h into your XCode project. Add the user.js file to your cloud code folder and include in your main.js file
require('cloud/user.js');
or copy the contents to main.js
#Login with Digits
To use just call the function which will trigger the Digits sign-in flow and when succeded, will authenticate or create a new user on Parse.
You may call using blocks:
[PFUser loginWithDigitsInBackground:^(PFUser *user, NSError *error) {
if(!error){
// do something with user
}
}];
Or Using Bolts:
[[PFUser loginWithDigitsInBackground] continueWithBlock: ^id (BFTask *task) {
if(!task.error){
PFUser *user = task.result;
// do something with user
}
}];
#Link Existing Account
You can also link an existing account (anonymous or not) with Digits. This works in the same way as linking with Facebook and allows you to later on log back in using the Digits sign-in
[[PFUser currentUser] linkWithDigitsInBackground]; //returns BFTask*
or
[[PFUser currentUser] linkWithDigitsInBackground:^(PFUser* user, NSError* error) {}]; //block callback
#Customising
For all the previous examples you can customize the Title, Background Color and Accent Color (Font). For example:
[PFUser loginWithDigitsInBackgroundWithTitle:@"Digits Login" backgroundColor:[UIColor whiteColor] accentColor:[UIColor redColor]];
#License The MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.