We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c36ef99 commit 6abf29dCopy full SHA for 6abf29d
src/Adapters/Auth/facebook.js
@@ -37,7 +37,7 @@ function validateAppId(appIds, authData) {
37
// A promisey wrapper for FB graph requests.
38
function graphRequest(path) {
39
return new Promise(function(resolve, reject) {
40
- https.get('https://graph.facebook.com/v2.5/' + path, function(res) {
+ https.get('https://graph.facebook.com/' + path, function(res) {
41
var data = '';
42
res.on('data', function(chunk) {
43
data += chunk;
0 commit comments