Do you have a method or plugin available that can access an iOS users iTunes music library on the phone. the concept of the app i'm developing is for the user to select a song from their existing music library on their phone, and then have that song added to a customized classification in my app, an...
you can close this ticket. i was able to use the code I had for facebook and then i whipped up a script in php to grab the base64 and save it as a jpg, and then with that i could post that to pinterest. it took quite a few steps, but in the end i have all of my sharing buttons working now. thank you...
just and update so far i've been able to get this to work sharing to Facebook using a bit of javascript that i found that will decode the image and then post an html5 canvas to facebook. so far it's working. next step is to find a Twitter and Pinterest solution to do the same thing. thanks for the h...
should the atob() functions work by default? or is there a library i need to add? is there an easier way to share photos on facebook? or is this the only way. I'm guessing that i'm answering my own question, but i think in order to share to facebook i'll need a direct url to the jpg, etc. So perhaps...
Hello, i have a photo sharing app, much like instagram. so far the system has been working fantastic for our vision of the app. However, the last part i need to finish is the ability for a user to share a photo on facebook. I am storing the photos in a collection called "photos" as base64 ...
In my photo sharing app, we've added a "liking" ability much like other sites. So have the likes stored in a collection with the id of the photo and user id of the person that liked it. What i need to do now is come up with a way to making a photo feed of the photos that get the most likes...
FYI, i am trying to run several queries and also run create services, and several of them suddenly just started giving me internal server errors (500). For them all to break at once leads me to think the problem is on your end.
looking in the console did show me that i had some 400 errors on the api. But after much trial and error, the following code successfully works. This is being used as a way to see if a user has liked a photo or not. So the user id and the photo id are stored locally. Temp is just a spot where i am s...
this is my current syntax and it doesn't seem to be working. var user_id = localStorage.getItem("user_id"); return '{"$and": [{"Photo_id": {"collName":"Photos"," id": '+value+'}},{"user_id":{"collName":" users"...
i am trying to find records in my collection that have both the user's id and a photo id in my "likes" collection. In the collection both photo_id and user_id are pointers. This is the code i've tried without success. var user_id = localStorage.getItem("user_id"); where={"$a...