Vishal Tanna
Vishal Tanna

Reputation: 1305

Facebook Users Search API

I am using latest version of facebook php sdk i want searched user list.

$response = $fb->get('search?q=programming&type=user', '{access-token}');

$response is always returns blank value in version 5.

Thanks in advance..!!!

Upvotes: 0

Views: 91

Answers (1)

04FS
04FS

Reputation: 5820

That was removed in 4/2018 already.

https://developers.facebook.com/docs/graph-api/changelog/breaking-changes#search-4-4

You can no longer use the /search endpoint with the following object types:

  • event
  • group
  • page
  • user

Upvotes: 2

Related Questions