0

I use simple app but cannot understand next:

Opened 2 urls:

https://www.facebook.com/media/set/?set=a.675416519138045.1073741830.660049570674740&type=3

AND

https://www.facebook.com/joyasmariajose.valdivieso/media_set?set=a.383620231706322.80737.100001750452794&type=3

When I use Graph Exploder:

GET \675416519138045

return all information about album in this user

But When I try

GET \383620231706322

I can get only user_id and name. On the album have next error:

{
  "error": {
    "message": "Unsupported get request. Please read the Graph API documentation at https://developers.facebook.com/docs/graph-api",
    "type": "GraphMethodException",
    "code": 100,
    "fbtrace_id": "Hb9lKBi2Wpz"
  }
}

Question: What can be wrong with second url ?

CHORTik
  • 126
  • 1
  • 1
  • 7

1 Answers1

1

Unsupported get request usually means that you can't access that resource without an Access Token, i.e. you don't have permissions to this object, as @CBroe said.

Tobi
  • 31,405
  • 8
  • 58
  • 90
  • I use Graph Explorer API and all permissions to this token. All users are not friends to me. – CHORTik Oct 08 '15 at 13:43
  • You can't request resources of people which haven't given your app permission to do so. That's how Facebook Login / OAuth works. – Tobi Oct 08 '15 at 13:48