Search facebook api

Does anyone know if a facebook search api http://developers.facebook.com/docs/api#search allows us to execute OR queries?

+3
source share
3 answers

Try "keyword1 | keyword2" as the search string. https://graph.facebook.com/search?q=Smart.fm+%7C+iKnow&type=post

+2
source

var searchQueryString = 'search? q = '+ query +' & type = '+ type FB.api (' / '+ searchQueryString, function (response) {

    });

The above is an example of how you can search on facebook. query - search keyword

type - (, "post" )

conncet.js.

.

http://connect.facebook.net/en_GB/all.js

script html

, , , .

,

0

Sorry, OR queries are no longer possible.

0
source

Source: https://habr.com/ru/post/1760496/


All Articles