-
-
Notifications
You must be signed in to change notification settings - Fork 4.8k
add login with qq, wechat and weibo #3069
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
// Helper functions for accessing the qq Graph API. | ||
var https = require('https'); | ||
var Parse = require('parse/node').Parse; | ||
|
||
// Returns a promise that fulfills iff this user id is valid. | ||
function validateAuthData(authData) { | ||
return graphRequest('me?access_token=' + authData.access_token).then(function (data) { | ||
if (data && data.openid == authData.id) { | ||
return; | ||
} | ||
throw new Parse.Error(Parse.Error.OBJECT_NOT_FOUND, 'qq auth is invalid for this user.'); | ||
}); | ||
} | ||
|
||
// Returns a promise that fulfills if this app id is valid. | ||
function validateAppId(appIds, authData) { | ||
return Promise.resolve(); | ||
} | ||
|
||
// A promisey wrapper for qq graph requests. | ||
function graphRequest(path) { | ||
return new Promise(function (resolve, reject) { | ||
https.get('https://graph.qq.com/oauth2.0/' + path, function (res) { | ||
var data = ''; | ||
res.on('data', function (chunk) { | ||
data += chunk; | ||
}); | ||
res.on('end', function () { | ||
var starPos=data.indexOf("("); | ||
var endPos=data.indexOf(")"); | ||
if(starPos==-1||endPos==-1){ | ||
throw new Parse.Error(Parse.Error.OBJECT_NOT_FOUND, 'qq auth is invalid for this user.'); | ||
} | ||
data=data.substring(starPos+1,endPos-1); | ||
data = JSON.parse(data); | ||
resolve(data); | ||
}); | ||
}).on('error', function (e) { | ||
reject('Failed to validate this access token with qq.'); | ||
}); | ||
}); | ||
} | ||
|
||
module.exports = { | ||
validateAppId, | ||
validateAuthData | ||
}; |
This file contains hidden or 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
// Helper functions for accessing the WeChat Graph API. | ||
var https = require('https'); | ||
var Parse = require('parse/node').Parse; | ||
|
||
// Returns a promise that fulfills iff this user id is valid. | ||
function validateAuthData(authData) { | ||
return graphRequest('auth?access_token=' + authData.access_token +'&openid=' +authData.id).then(function (data) { | ||
if (data.errcode == 0) { | ||
return; | ||
} | ||
throw new Parse.Error(Parse.Error.OBJECT_NOT_FOUND, 'qq auth is invalid for this user.'); | ||
}); | ||
} | ||
|
||
// Returns a promise that fulfills if this app id is valid. | ||
function validateAppId(appIds, authData) { | ||
return Promise.resolve(); | ||
} | ||
|
||
// A promisey wrapper for WeChat graph requests. | ||
function graphRequest(path) { | ||
return new Promise(function (resolve, reject) { | ||
https.get('https://api.weixin.qq.com/sns/' + path, function (res) { | ||
var data = ''; | ||
res.on('data', function (chunk) { | ||
data += chunk; | ||
}); | ||
res.on('end', function () { | ||
data = JSON.parse(data); | ||
resolve(data); | ||
}); | ||
}).on('error', function (e) { | ||
reject('Failed to validate this access token with weixin.'); | ||
}); | ||
}); | ||
} | ||
|
||
module.exports = { | ||
validateAppId, | ||
validateAuthData | ||
}; |
This file contains hidden or 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
// Helper functions for accessing the weibo Graph API. | ||
var https = require('https'); | ||
var Parse = require('parse/node').Parse; | ||
var querystring = require('querystring'); | ||
|
||
// Returns a promise that fulfills iff this user id is valid. | ||
function validateAuthData(authData) { | ||
return graphRequest(authData.access_token).then(function (data) { | ||
if (data && data.uid == authData.id) { | ||
return; | ||
} | ||
throw new Parse.Error(Parse.Error.OBJECT_NOT_FOUND, 'weibo auth is invalid for this user.'); | ||
}); | ||
} | ||
|
||
// Returns a promise that fulfills if this app id is valid. | ||
function validateAppId(appIds, authData) { | ||
return Promise.resolve(); | ||
} | ||
|
||
// A promisey wrapper for weibo graph requests. | ||
function graphRequest(access_token) { | ||
return new Promise(function (resolve, reject) { | ||
var postData = querystring.stringify({ | ||
"access_token":access_token | ||
}); | ||
var options = { | ||
hostname: 'api.weibo.com', | ||
path: '/oauth2/get_token_info', | ||
method: 'POST', | ||
headers: { | ||
'Content-Type': 'application/x-www-form-urlencoded', | ||
'Content-Length': Buffer.byteLength(postData) | ||
} | ||
}; | ||
var req = https.request(options, function(res){ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. use const |
||
var data = ''; | ||
res.on('data', function (chunk) { | ||
data += chunk; | ||
}); | ||
res.on('end', function () { | ||
data = JSON.parse(data); | ||
resolve(data); | ||
}); | ||
res.on('error', function (err) { | ||
reject('Failed to validate this access token with weibo.'); | ||
}); | ||
}); | ||
req.on('error', function (e){ | ||
reject('Failed to validate this access token with weibo.'); | ||
}); | ||
req.write(postData); | ||
req.end(); | ||
}); | ||
} | ||
|
||
module.exports = { | ||
validateAppId, | ||
validateAuthData | ||
}; |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
use const