开发者

How to disable "Publish content to your Wall" when using Facebook's new Oauth2?

开发者 https://www.devze.com 2022-12-31 14:00 出处:网络
Right now when I use Facebook\'s new OAuth2 system, it tells the user that my app is requesting to \"Publish content to your Wall\".How do I disable this (for fear of scaring off users), as 开发者_如何

Right now when I use Facebook's new OAuth2 system, it tells the user that my app is requesting to "Publish content to your Wall". How do I disable this (for fear of scaring off users), as 开发者_如何学编程I don't need this enabled. Possible?


Getting the user to authorize one of the extended permissions for your app is kind of the point behind authenticating. You may want to see if the data you need is exposed without authenticating (if you in fact need data). If you can get the uid you can see what is exposed to everyone, and per the privacy changes, I mean everyone. Until the privacy "fire", there was quite a bit exposed to everyone, now 'everyone' means the least restrictive tier among multiple privacy tiers rather than the happy-go-lucky default.

So really the question is, what permission are you trying to get?

There are a few unknown variables here such as what type of app you are making etc.

Check your code for one of the extended permissions, you are probably sending one of them such as offline_access in your auth call.

0

精彩评论

暂无评论...
验证码 换一张
取 消