I am in the process of building a photo sharing app. So far i have my camera page working perfectly getting the photo from the camera or local library and saving it to the database. That part is great. So now i want to show those photos in a feed (list) but i want to include the username of the person that submitted it next to the photo. So i need to be able to grab the name from the users collection in the database for each of the photos.
So far i created a hidden user_id field and i am passing that back to a custom REST service that i used elsewhere in the app to just grab information for a specific user based on their id. But in this case it doesn't seem to be working in the loop to grab it with the list of photos.
I have it set to fire the get user info service after the list service is complete, but I don;t think that is correct.
I think that i am like 90% of the way there i'm just missing a final step i think.
Can you help???