You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can query this in Fb graph explorer. search?q=Sanfransisco, music, rock&type=event
How can I do it with the search method. Even if I set multiple comma separated words in q the results are not same. It doesn't even allow to set an Array
var queryObj = {
q: 'Sanfransisco, music, rock', // can't even set it an Array
type: 'event',
// center: [31.4834441, 74.0460169],
// distance: 3000
};
FBGraph.search(queryObj, function(err, res) {
if (err) return console.log(err);
console.log(res);
});
The text was updated successfully, but these errors were encountered:
I can query this in Fb graph explorer.
search?q=Sanfransisco, music, rock&type=event
How can I do it with the search method. Even if I set multiple comma separated words in q the results are not same. It doesn't even allow to set an Array
The text was updated successfully, but these errors were encountered: