var link = 'https://www.google.com.eg/?gfe_rd=1';
facebookConnectPlugin.api('me/feed?method=post&link='+ link +'', ['publish_actions']);
The query string ('?gfe_rd=1') always gets stripped off the URL no matter what the URL. I tried to encode the URL and it's still doing the same behavior
I'm using the following code to post to a user's timeline using the Graph API. The URL I'm testing: https://www.google.com.eg/?gfe_rd=1
The query string ('?gfe_rd=1') always gets stripped off the URL no matter what the URL. I tried to encode the URL and it's still doing the same behavior