0

すでにアプリを承認しているが、「Post Automatic」を拒否したユーザー。権限を再度追加するにはどうすればよいですか? リストからアプリを削除し、ユーザーを削除しました。彼らが辞任するとき、彼らに許可を再度求めませんか?

NSString *message = NSLocalizedString(@"FACEBOOK_INVITE_MESSAGE", nil);
NSString *link = ITUNES_URL;
NSString *description = NSLocalizedString(@"FACEBOOK_INVITE_DESCRIPTION", nil);
NSString *picture = @"http://trivi.al/Content/images/icon72.png";
NSMutableDictionary *tParams = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                                message,     @"message",
                                link,        @"link",
                                description, @"description",
                                picture,     @"picture", nil];
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:sender.tag inSection:[[sender superview] superview].tag];

NSDictionary *playerDict = [((NSArray*)[self.sortedUsersWithoutApp valueForKey:((NSString*)[self.sortedKeysForUsersWithoutApp objectAtIndex:indexPath.section])]) objectAtIndex:indexPath.row];

[[PFFacebookUtils facebook] requestWithGraphPath:[NSString stringWithFormat:@"%@/feed", [playerDict objectForKey:@"id"]] 
                      andParams:tParams
                    andHttpMethod:@"POST"
                    andDelegate:self];
4

0 に答える 0