문제

Is it safe to store the request object ID returned by facebooks apprequest as a primary key without the username, or is it only unique for every facebook user?

I am confused because of this:

To get the full request ID, concatenate this with a user ID from the to field: 
<request_object_id>_<user_id>
도움이 되었습니까?

해결책

Yes, you cannot send the exact same Request object to the same user twice, so the request ID is unique for that usage of the Requests dialog. Appending the user ID specifically further identifies which request/user pair you're trying to work with.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top