ユーザーのFacebookの壁に、ユーザーの場所を記載した写真(カメラから撮影)を投稿する必要があります。これで、Facebookの写真オブジェクトにplaceという名前のフィールドがあります。
object containing id and name of Page associated with this location, and a location field containing geographic information such as latitude, longitude, country, and other fields (fields will vary based on geography and availability of information)
次に、場所を取得し、写真を添付してユーザーのウォールにアップロードするにはどうすればよいですか。これは写真をアップロードするための私のコードです:
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
resultImage, @"picture",
location, @"place",
nil];
[appDelegate.facebook requestWithGraphPath:@"me/photos"
andParams:params
andHttpMethod:@"POST"
andDelegate:self];
しかし、ここで位置パラメータを取得するにはどうすればよいですか?誰か助けてもらえますか?前もって感謝します。