コアラのrubygemを使用してAPIを介してFacebookのビジネスページのアドレス/場所を更新しようとしていますが、これまでのところ実用的な解決策はありません。
page_access_token = "gw4t3434"
page_api = Koala::Facebook::API.new(page_access_token)
page_api.graph_call('me', {:location => {:street => "my street"}}, 'post') #error. Koala::Facebook::APIError: OAuthException: (#100) Parameters do not match any fields that can be updated
page_api.graph_call('me', {:location => {:address => "my street"}}, 'post') #error. Koala::Facebook::APIError: OAuthException: (#100) Parameters do not match any fields that can be updated
page_api.graph_call('me', {:address => "my street"}}, 'post')# not raise error but not working
page_api.graph_call('me', {:street => "my street"}}, 'post')# not raise error but not working
ページ内のアドレスの更新に関するFacebookAPIリファレンスでも明確な説明が見つかりません。私は何かが足りないかもしれません...