.instagram
$cordovaOauth.instagram(clientId, appScopes).then(function(result) {
// Success! Oauth data
}, function(err) {
// An error occured
});
.facebook
$cordovaOauth.facebook(clientId, appScopes).then(function(result) {
// Success! Oauth data
}, function(err) {
// An error occured
});
.dropbox
$cordovaOauth.dropbox(appId).then(function(result) {
// Success! Oauth data
}, function(err) {
// An error occured
});
.google
$cordovaOauth.google(clientId, appScopes).then(function(result) {
// Success! Oauth data
}, function(err) {
// An error occured
});
.github
$cordovaOauth.github(clientId, clientSecret, appScopes).then(function(result) {
// Success! Oauth data
}, function(err) {
// An error occured
});
.linkedin
$cordovaOauth.linkedin(clientId, clientSecret, appScopes, appState).then(function(result) {
// Success! Oauth data
}, function(err) {
// An error occured
});
.digitalOcean
$cordovaOauth.digitalOcean(clientId, clientSecret).then(function(result) {
// Success! Oauth data
}, function(err) {
// An error occured
});
.box
$cordovaOauth.box(clientId, clientSecret, appState).then(function(result) {
// Success! Oauth data
}, function(err) {
// An error occured
});
.reddit
$cordovaOauth.reddit(clientId, clientSecret, ["edit"]).then(function(result) {
// Success! Oauth data
}, function(err) {
// An error occured
});
.twitter
$cordovaOauth.twitter(clientId, clientSecret).then(function(result) {
// Success! Oauth data
}, function(err) {
// An error occured
});
.meetup
$cordovaOauth.meetup(consumerId).then(function(result) {
// Success! Oauth data
}, function(err) {
// An error occured
});