Geo information of photos [duplicate] - facebook

This question already has answers here:
Photo location available through API?
(2 answers)
Closed 9 years ago.
I want geo information (latitude and longitude) associated with Facebook photos. I looked at the documentation and couldn't find it. Does anyone have any idea about the same?

MAybe the information is stored in the EXIF data of the photos?

Related

how to retrieve "seen by" data for group post on Facebook [duplicate]

This question already has an answer here:
How to get the Seen By data for group post on Facebook
(1 answer)
Closed 8 years ago.
According to this How to get the Seen By data for group post on Facebook , this wasn't possible 4 months ago, there's any solution now ?
Thanks,
AFAIK There still isn't any way to get this. It would probably have some huge privacy implications, I wouldn't hold my breath on them implementing it any time soon.

Reading JSON in Objective-C [duplicate]

This question already has answers here:
Closed 10 years ago.
Possible Duplicate:
Which JSON library to use for data on iPhone
I have a JSON file. I want to read each element value and store those values into an array.
How do i proceed?
Use NSJSONSerialization. It's built in.
http://developer.apple.com/library/ios/documentation/Foundation/Reference/NSJSONSerialization_Class/Reference/Reference.html

Accessing iPhone location from a website [duplicate]

This question already has answers here:
Closed 10 years ago.
Possible Duplicate:
Geolocation API on the iPhone
Find current location by using html in iphone
Is there a way to access a users gps location information (iPhone) when they visit your website (assuming they give you permission, have location services on etc).
TIA!
Check out W3's Geolocation API Specification.

How to convert Address to Latitude and Longitude in iPhone Developement [duplicate]

This question already has answers here:
Closed 11 years ago.
Possible Duplicate:
How to convert an address to a latitude/longitude?
Anyone know how to convert address to Latitude and Longitude in iPhone Developement? I am trying to build an app that users can search address and shows on google map.
Thanks
You Gould use cloud made for that - just on example.
This article http://blog.cloudmade.com/2009/06/12/how-to-get-forward-geocoding-in-iphone-mapkit/
Should help you

how to post data to a site database in an iphone application? [duplicate]

This question already has answers here:
Objective-C: Best way to access REST API on your iphone
(5 answers)
Closed 9 years ago.
I want to create an iphone application that is able to post the data to a website database which is using MySQL. Can anyone give some hints?
You'll need to use NSURLConnection and NSURLRequest to send the data to the server.