-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathinstagram_client.js
38 lines (34 loc) · 1.3 KB
/
instagram_client.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
Instagram = {};
Instagram.requestCredential = function (options, credentialRequestCompleteCallback) {
if (!credentialRequestCompleteCallback && typeof options === 'function') {
credentialRequestCompleteCallback = options;
options = {};
}
var config = ServiceConfiguration.configurations.findOne({service: 'instagram'});
if (!config) {
credentialRequestCompleteCallback && credentialRequestCompleteCallback(
new ServiceConfiguration.ConfigError());
return;
}
var credentialToken = Random.secret();
var loginStyle = OAuth._loginStyle('instagram', config, options);
var scope = (config.scope) || ['basic', 'likes', 'relationships', 'comments'];
if (typeof scope === 'string') {
scope = [scope];
}
var flatScope = _.map(scope, encodeURIComponent).join('+');
var loginUrl =
'https://instagram.com/oauth/authorize' +
'?client_id=' + config.clientId +
'&response_type=code' +
'&scope=' + flatScope +
'&redirect_uri=' + OAuth._redirectUri('instagram', config) +
'&state=' + OAuth._stateParam(loginStyle, credentialToken);
OAuth.launchLogin({
loginService: "instagram"
, loginStyle: loginStyle
, loginUrl: loginUrl
, credentialRequestCompleteCallback: credentialRequestCompleteCallback
, credentialToken: credentialToken
});
};