Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a list of event ids eid1,eid2,eid3.... The creator of these events have a user id of uid1,uid1,uid2,... Multiple event ids can have the same user id. Now I am trying to get the name of the user associated with the user id. It is to be noted that the order uid1,uid1,uid2,... is important since my ultimate aim is to get the user creator name for each event id.

If i query facebook: select name from user where uid in (uid1,uid1,uid2)

it returns

username1
username2

But I need it to return

username1
username1
username2

So that I can match it up with my event id later and display it in a list view.

I have also tried select name,host from event where eid in (select eid from event_member where uid=me() but the host seems to always be null. Is there any way out of this?

share|improve this question
1  
save your list. create a new list (or map) with unique uids. get answers from from facebook per unique uid. use your original list to arrange the answers. – Tamir Scherzer Oct 6 '12 at 13:16
I think I will try that out.Look like my only option – user1667307 Oct 6 '12 at 13:19
Yep. That worked. Please post that as an answer and I will accept it. – user1667307 Oct 6 '12 at 14:42

2 Answers

up vote 0 down vote accepted

save your list. create a new list (or map) with unique uids. get answers from from facebook per unique uid. use your original list to arrange the answers.

share|improve this answer

- Use Collection framework.

- If order/sequence is important then use List.

For eg:

List<String> arList = // put ur response here

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.