我已经使用说明here创建了一个测试用户。
如何向此测试用户帐户发送状态发布请求?
我尝试在设置下以此测试用户身份登录。我可以成功登录 但是当我点击我的应用程序中的使用Facebook登录按钮时,Facebook会返回错误消息
Facebook服务器无法满足此访问请求: 无效的申请123xxxx
答案 0 :(得分:0)
据我所知,你的问题有两个不同的问题。
首先,您希望使用自己的帐户发布到testUser墙。试试这个:
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:@"somekey", @"someobject" nil];
[FBRequestConnection startWithGraphPath:[NSString stringWithFormat:@"%@/feed", testUserFbId] // here you set in whose post you wanna do the action, in this case it is yourself
parameters:params
HTTPMethod:@"POST"
completionHandler:^(FBRequestConnection *connection,
id result,
NSError *error) { /* Your code here */ }
第二次,您无法使用testUser帐户登录您的应用。这是一个更广泛的问题,可能有很多原因。
如果我在正确的道路上,请告诉我。