Field aliases not working with https graphics API request

Facebook GraphAPI Field aliases do not support requests via https-url.

The following is an example if it is not supported: https://graph.facebook.com/v2.6/theunrealpage?fields=posts.limit(5){picture,full_picture,link,source,reactions.type(LIKE).limit(0).summary(total_count).as(like_reactions)}&access_token=531682143674670|c71A8V6qW0jarwsFqUWjMMJYQqo

When the request is made, it gives the following error:

error: { message: "(#100) Unknown fields: like_reactions,love_reactions.", type: "OAuthException", code: 100, fbtrace_id: "Dl3pAPrhdHt" }

Is there any way to do this?

+4
source share
1 answer

Facebook said that alias functionality is not supported for all edges. See here: https://developers.facebook.com/bugs/882975555164278/

A workaround has been suggested here: fooobar.com/questions/182977 / ...

+1
source

All Articles