Questions tagged [friendrequest]
9 questions
2
votes
1 answer
Parse.com check friendRequest duplication iOS
I would like to avoid duplication with Parse.com and Cloud Code or iOS Code.
Here is my class from database :
I would like when "from" userId has already sent to "to" userId, that doesn't send the second friendRequest.
Here is my iOS Code :
PFUser…

xcode_Dev
- 237
- 4
- 16
2
votes
1 answer
How to accept or deny a friend request with Parse?
Right now the "Friend" component in my app lists every user that has signed up for the app. User A can then add as many friends as they want and interact with them.
What I want to do is allow User A to send a request to those users so that User B,…

Luke Irvin
- 1,179
- 1
- 20
- 39
2
votes
1 answer
How to get facebook pending friend requests through fql
I'm working on getting pending requests by fql. I've set up "read_requests" permission and used following fql:
SELECT uid_from,
message
FROM. friend_request
WHERE. uid_to = me()
But it doesn't work and I do not get anything.
Can…

user2623470
- 21
- 1
1
vote
1 answer
Android Facebook SDK - How To Query Facebook Friend Requests
I have the Facebook SDK for Android used in my app. I can't seem to find any examples or documentation on how to use the SDK code to get Friend Requests. I have the permission "read_requests" set. Does anyone know the graphPath parameter that should…

Camille Sévigny
- 5,104
- 4
- 38
- 61
1
vote
1 answer
How to use DynamoDB table to create friends in iOS application?
I am trying to create an application like Facebook where people can become friends with one another. I want to be able to use DynamoDB to create these relationships. From what I have seen online people think that the relationship should look like…

JFDeveloper
- 65
- 4
0
votes
0 answers
Send and receive friend requests Android studio (Firestore)
I make an app where the logged in user can see the other users from Firestore database ( they are in a recyclerView ) . Each item of the recycler view has a button called "Add friend". I want to send a friend request to that specific user when I…

Daiana
- 19
- 6
0
votes
0 answers
How do I make this friend request class-based-view work?
I am trying to make a friend request class-based-view work on a django project, but keep getting errors. The error I am currently getting is:
TypeError at /friend_request/joe
int() argument must be a string, a bytes-like object or a number, not…

Brian
- 385
- 1
- 5
- 23
0
votes
0 answers
Send friend request Android Facebook SDK
I have looked around and tried to find a solution to this question but cannot seem to find one that works, I am trying to have an interface where the user logs in and a friend request is sent to a certain user. I have specified the facebook id. The…

Akhil Yeleswar
- 87
- 1
- 1
- 12
0
votes
1 answer
Friends Dialog URL Redirect on Windows Phone v8.0
I'm trying to develop an app on windows phone 8.0, and I want to add a feature to send a friend request, having the id.
I followed the URL Redirect instructions right here.
https://developers.facebook.com/docs/reference/dialogs/friends/
I wrote this…