mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
43 lines
1.6 KiB
JavaScript
43 lines
1.6 KiB
JavaScript
Twitter = {};
|
|
|
|
// Request Twitter credentials for the user
|
|
// @param options {optional} XXX support options.requestPermissions
|
|
// @param credentialRequestCompleteCallback {Function} Callback function to call on
|
|
// completion. Takes one argument, credentialToken on success, or Error on
|
|
// error.
|
|
Twitter.requestCredential = function (options, credentialRequestCompleteCallback) {
|
|
// support both (options, callback) and (callback).
|
|
if (!credentialRequestCompleteCallback && typeof options === 'function') {
|
|
credentialRequestCompleteCallback = options;
|
|
options = {};
|
|
}
|
|
|
|
var config = ServiceConfiguration.configurations.findOne({service: 'twitter'});
|
|
if (!config) {
|
|
credentialRequestCompleteCallback && credentialRequestCompleteCallback(
|
|
new ServiceConfiguration.ConfigError());
|
|
return;
|
|
}
|
|
|
|
var credentialToken = Random.secret();
|
|
// We need to keep credentialToken across the next two 'steps' so we're adding
|
|
// a credentialToken parameter to the url and the callback url that we'll be returned
|
|
// to by oauth provider
|
|
|
|
var loginStyle = OAuth._loginStyle('twitter', config, options);
|
|
|
|
// url to app, enters "step 1" as described in
|
|
// packages/accounts-oauth1-helper/oauth1_server.js
|
|
var loginUrl = Meteor.absoluteUrl(
|
|
'_oauth/twitter/?requestTokenAndRedirect=true'
|
|
+ '&state=' + OAuth._stateParam(loginStyle, credentialToken));
|
|
|
|
OAuth.launchLogin({
|
|
loginService: "twitter",
|
|
loginStyle: loginStyle,
|
|
loginUrl: loginUrl,
|
|
credentialRequestCompleteCallback: credentialRequestCompleteCallback,
|
|
credentialToken: credentialToken
|
|
});
|
|
};
|