Last active
February 13, 2018 20:07
-
-
Save hansemannn/71b6181557ec0f6024e29c642dbe52e3 to your computer and use it in GitHub Desktop.
Use Axway Hyperloop to perform OAuth-sessions with the iOS 11+ API "SFAuthenticationSession"
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const SFAuthenticationSession = require('SafariServices/SFAuthenticationSession'); | |
const NSURL = require('Foundation/NSURL'); | |
const session = SFAuthenticationSession.alloc().initWithURLCallbackURLSchemeCompletionHandler( | |
NSURL.alloc().initWithString('https://github.com/login/oauth/authorize?scope=repo&client_id=XXXXX'), | |
'appcgithub://', | |
function(url, error) { | |
if (error != null) { | |
Ti.API.error('Error performing OAuth: ' + error.localizedDescription); | |
cb({ success: false, error: 'Error performing OAuth: ' + error.localizedDescription }); | |
return; | |
} | |
cb({ success: true, url: url.absoluteString }); | |
}); | |
function cb(e) { | |
Ti.API.info(e); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment