]> git.mxchange.org Git - friendica-addons.git/blobdiff - fbpost/fbpost.php
remove other occurrences of file_get_contents() being used to fetch urls
[friendica-addons.git] / fbpost / fbpost.php
index 76c5f67265626d8086f7dae2da027c6ae34d798f..57c831ce96748667683b71401e8c09fbdd9224af 100644 (file)
@@ -239,7 +239,7 @@ function fbpost_content(&$a) {
                $page_access_token = get_pconfig(local_user(),'facebook','page_access_token');
                $fb_token  = get_pconfig($a->user['uid'],'facebook','access_token');
                $url = 'https://graph.facebook.com/me/accounts';
-               $x = file_get_contents($url."?access_token=".$fb_token);
+               $x = fetch_url($url."?access_token=".$fb_token);
                $accounts = json_decode($x);
 
                $o .= t("Post to page/group:")."<select name='post_to_page'>";
@@ -257,7 +257,7 @@ function fbpost_content(&$a) {
                }
 
                $url = 'https://graph.facebook.com/me/groups';
-               $x = file_get_contents($url."?access_token=".$fb_token);
+               $x = fetch_url($url."?access_token=".$fb_token);
                $groups = json_decode($x);
 
                foreach($groups->data as $group) {