Who is familiar with API vkontakte If some user is not authorized in the application, but he has access to the wall for all users, the application will be able to get a list of messages from its wall using the wall.get method?
- Judging by the documentation , your application can read the records from the wall of any user without any problems (if they are open, of course), if they have access rights with code 8192. But I am not sure about the details. - VioLet
|
1 answer
Your application must have permissions to work with the wall, and then it will be able to read entries from the open wall of any other user in the same way as a certain user would have done through the web interface.
The application must be granted permissions to work with the wall, denoted either by the bit mask 8192 (13th bit), or in text form when authorizing with OAuth 2.0 , "wall".
Only Standalone applications can now rely on this right.
|