我想在我的 IOS 应用程序中显示一个页面的 Facebook 提要。现在我查看了一个 PHP 示例,它正在执行以下操作。
$profile_id = "111111111111111231";
//App Info, needed for Auth
$app_id = "12312424123214123124123";
$app_secret = "12312421415123124123";
//Retrieve auth token
$authToken = fetchUrl("https://graph.facebook.com/oauth/access_token?type=client_cred&client_id={$app_id}&client_secret={$app_secret}");
$json_object = fetchUrl("https://graph.facebook.com/{$profile_id}/feed?{$authToken}");
//echo "https://graph.facebook.com/{$profile_id}/feed?{$authToken}";
当然,我已将代码更改为假代码。但是当我使用正确的代码在浏览器中完成这些步骤时。我以 JSON 格式获取我的提要。
我现在的问题是,将这个 PHP 转换为 Objective-c 代码并解析 JSON 是否可以?或者有什么我需要记住的吗?
亲切的问候