English 中文(简体)
为什么在浏览时没有数据,而没有使用图表复印件?
原标题:Why is there information available while browsing that is not available using the graph api?

There is profile information, like interests, education and work history, that is available to me when I am browsing profiles of users who are not my friends (while logged in and while logged out). However this information is not available using the graph api, using an access token given by my user with the maximum permissions possible.

为什么如此? 我做了一些错误的事情,或者Facebook的政策是,在浏览该网站时披露更多的信息,而不是在使用图表时?

问题回答

我猜测的是,在使用该软件时情况如何,你可以通过打上任何用户的图表(甚至连与Facebook相连接)来轻易证实这一点:

https://graph.facebook.com/zuck

结果:

{
   "id": "4",
   "name": "Mark Zuckerberg",
   "first_name": "Mark",
   "last_name": "Zuckerberg",
   "link": "http://www.facebook.com/zuck",
   "username": "zuck",
   "gender": "male",
   "locale": "en_US"
}

现在有一个用户<代码> 上网_token。 我在几个方面:

{
  "id": "4",
  "name": "Mark Zuckerberg",
  "first_name": "Mark",
  "last_name": "Zuckerberg",
  "link": "https://www.facebook.com/zuck",
  "username": "zuck",
  "gender": "male",
  "locale": "en_US",
  "updated_time": "2011-10-02T21:26:46+0000",
  "type": "user"
}

回答你的问题:

Does Facebook expose more information about public profiles while browsing the site than while using the graph api?

<><>





相关问题
Not authorized to write to this feed

I am calling service.insert(new URL(getContentFeedUrl()), newAttachment); for Google sites file upload using MediaStreamSource in servlet and get following exception com.google.gdata.util....

php javascript permissions problem

Kind of a weird problem... not something ive ever run into before. So, i am using CKeditor, and am creating the upload and browse functions for users to upload and use images in the rich text editor. ...

Limiting Access by Permission

thanks for viewing this. I have a db that has users, roles & user_roles. What I am trying to achieve is a login that will select users who have Admin or Associate permissions. The login then uses ...

SQL Agent not kicking off an SSIS package

I have a server that has a SQL Agent job setup to run a two part datawarehouse build and Analysis Services cube build. The job ran successfully until there was a problem with Management Studio and ....

SharePoint : web service permission error

I have a sharepoint site, and I am calling a standard sharepoint web service. I create the web service request like this : wsDws.Url = this.SiteAddress + @"/_vti_bin/Dws.asmx"; When I use ...

热门标签