Remove FB Graph API version from URL to use the oldest non deprecated version (2.5 for now, which will be deprecated soon) (#4650)
This commit is contained in:
@@ -37,7 +37,7 @@ function validateAppId(appIds, authData) {
|
|||||||
// A promisey wrapper for FB graph requests.
|
// A promisey wrapper for FB graph requests.
|
||||||
function graphRequest(path) {
|
function graphRequest(path) {
|
||||||
return new Promise(function(resolve, reject) {
|
return new Promise(function(resolve, reject) {
|
||||||
https.get('https://graph.facebook.com/v2.5/' + path, function(res) {
|
https.get('https://graph.facebook.com/' + path, function(res) {
|
||||||
var data = '';
|
var data = '';
|
||||||
res.on('data', function(chunk) {
|
res.on('data', function(chunk) {
|
||||||
data += chunk;
|
data += chunk;
|
||||||
|
|||||||
Reference in New Issue
Block a user