Facebook Graph API 获取某人喜欢的内容
Facebook Graph API to get what someone likes
是否可以使用图表获得某人喜欢的东西API?
我的意思是,我确实可以通过 /me?fields=likes
获得我的喜欢
但是我无法通过 /{OTHER_ID}?fields=likes
获得其他人的喜欢
即使设置了 OTHER_ID 个赞页面 public。
我试图将 jquery ajax 与用户 ID 一起使用,但是来自 facebook 的 ajax 请求都已加密,因为它们使用 https。
谢谢。
But I can't get other's likes with /{OTHER_ID}?fields=likes
Even if the OTHER_ID likes page are set public.
没关系 - 您需要获得喜欢您要查询的用户的 user_likes
许可;隐私设置无关紧要。
I was trying to use jquery ajax with the user ID, but the ajax requests from facebook are all encrypted since they use https.
反正那是不允许的。您的应用只能使用 API 明确提供访问权限的内容。
是否可以使用图表获得某人喜欢的东西API?
我的意思是,我确实可以通过 /me?fields=likes
但是我无法通过 /{OTHER_ID}?fields=likes
即使设置了 OTHER_ID 个赞页面 public。
我试图将 jquery ajax 与用户 ID 一起使用,但是来自 facebook 的 ajax 请求都已加密,因为它们使用 https。
谢谢。
But I can't get other's likes with /{OTHER_ID}?fields=likes
Even if the OTHER_ID likes page are set public.
没关系 - 您需要获得喜欢您要查询的用户的 user_likes
许可;隐私设置无关紧要。
I was trying to use jquery ajax with the user ID, but the ajax requests from facebook are all encrypted since they use https.
反正那是不允许的。您的应用只能使用 API 明确提供访问权限的内容。