<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic You are required to provide a in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/Facebook-Connect-Plugin/m-p/1018158#M37014</link>
    <description>&lt;P&gt;You are required to provide a hashkey in your Facebook application. For more information about the creation of key hashes, visit the following links as a startingpoint:&lt;/P&gt;

&lt;UL&gt;
	&lt;LI&gt;&lt;A href="http://stackoverflow.com/questions/4388992/key-hash-for-android-facebook-app"&gt;http://stackoverflow.com/questions/4388992/key-hash-for-android-facebook-app&lt;/A&gt;&lt;/LI&gt;
	&lt;LI&gt;&lt;A href="https://developers.facebook.com/docs/android/getting-started#create_hash"&gt;https://developers.facebook.com/docs/android/getting-started#create_hash&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;</description>
    <pubDate>Fri, 10 Apr 2015 22:00:47 GMT</pubDate>
    <dc:creator>Elroy_A_Intel</dc:creator>
    <dc:date>2015-04-10T22:00:47Z</dc:date>
    <item>
      <title>Facebook Connect Plugin</title>
      <link>https://community.intel.com/t5/Software-Archive/Facebook-Connect-Plugin/m-p/1018156#M37012</link>
      <description>&lt;P&gt;Hey can some body help me with this, I try to get email and public profile from facebook app, I included the plugin cordova facebook connect and enter my App ID and App Name, but when nothing happens when I execute this function, do not show nothing, thank you in advance.&lt;/P&gt;

&lt;P&gt;function facebook_login(){&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; //get login status&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; facebookConnectPlugin.getLoginStatus(fbLoginSuccess,&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; function (error){&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alert("" + error);&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; );&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; var fbLoginSuccess = function(data){&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alert(data);&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if(data.status == 'connected'){&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //get info&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; facebookConnectPlugin.api(data.userID + "/?fields=email", ["public_profile"],&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; function(result){&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var form = document.getElementById('registerform');&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; form.email.value = data.email;&lt;BR /&gt;
	window.localStorage.setItem('fb_first_name', result.first_name);&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; window.localStorage.setItem('fb_last_name', result.last_name);&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //load create_account_page&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $.mobile.changePage('#create_account', {transition: 'flip'} );&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; },&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; function(error){&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alert('Failed ' + error);&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; );&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }else{&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alert(data);&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; facebookConnectPlugin.login(["email", "public_profile"],&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; fbLoginSuccess,&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; function (error) { alert("" + error) }&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; );&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; }&lt;BR /&gt;
	}&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Apr 2015 02:08:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Facebook-Connect-Plugin/m-p/1018156#M37012</guid>
      <dc:creator>Alexander_F_</dc:creator>
      <dc:date>2015-04-10T02:08:23Z</dc:date>
    </item>
    <item>
      <title>Check this screens, when I</title>
      <link>https://community.intel.com/t5/Software-Archive/Facebook-Connect-Plugin/m-p/1018157#M37013</link>
      <description>&lt;P&gt;Check this screens,&amp;nbsp;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;when I try to login on facebook, and here is the new code, please help ASAP.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;function facebook_login(){&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; var fbLoginSuccess = function (userData) {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alert("UserInfo: " + JSON.stringify(userData));&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //get info&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; facebookConnectPlugin.api("me/?fields=id,email", ["public_profile"],&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; function (result) {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alert("Result: " + JSON.stringify(result));&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; },&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; function (error) {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alert("Failed: " + error);&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; );&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; }&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; facebookConnectPlugin.login(["public_profile"],&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; fbLoginSuccess,&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; function (error) {&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alert("" + JSON.stringify(error));&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; );&lt;BR /&gt;
	}&lt;/P&gt;

&lt;P&gt;Thank You!&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Apr 2015 14:12:15 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Facebook-Connect-Plugin/m-p/1018157#M37013</guid>
      <dc:creator>Alexander_F_</dc:creator>
      <dc:date>2015-04-10T14:12:15Z</dc:date>
    </item>
    <item>
      <title>You are required to provide a</title>
      <link>https://community.intel.com/t5/Software-Archive/Facebook-Connect-Plugin/m-p/1018158#M37014</link>
      <description>&lt;P&gt;You are required to provide a hashkey in your Facebook application. For more information about the creation of key hashes, visit the following links as a startingpoint:&lt;/P&gt;

&lt;UL&gt;
	&lt;LI&gt;&lt;A href="http://stackoverflow.com/questions/4388992/key-hash-for-android-facebook-app"&gt;http://stackoverflow.com/questions/4388992/key-hash-for-android-facebook-app&lt;/A&gt;&lt;/LI&gt;
	&lt;LI&gt;&lt;A href="https://developers.facebook.com/docs/android/getting-started#create_hash"&gt;https://developers.facebook.com/docs/android/getting-started#create_hash&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Fri, 10 Apr 2015 22:00:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Facebook-Connect-Plugin/m-p/1018158#M37014</guid>
      <dc:creator>Elroy_A_Intel</dc:creator>
      <dc:date>2015-04-10T22:00:47Z</dc:date>
    </item>
    <item>
      <title>I'm just getting this error</title>
      <link>https://community.intel.com/t5/Software-Archive/Facebook-Connect-Plugin/m-p/1018159#M37015</link>
      <description>&lt;P&gt;I'm just getting this error in the chrome log when debuggon on a physical device and using AppPreview:&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Uncaught ReferenceError: facebookConnectPlugin is not defined&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 03 May 2015 08:57:35 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Facebook-Connect-Plugin/m-p/1018159#M37015</guid>
      <dc:creator>David_B_12</dc:creator>
      <dc:date>2015-05-03T08:57:35Z</dc:date>
    </item>
    <item>
      <title>So the facebook plugin only</title>
      <link>https://community.intel.com/t5/Software-Archive/Facebook-Connect-Plugin/m-p/1018160#M37016</link>
      <description>&lt;P&gt;So the facebook plugin only works when you do a full build and deploy to a phone. &amp;nbsp;It doesn't work when you use the Debug tab. &amp;nbsp;So the question is how are you supposed to use the debugger when you've got FB integrated as it seems to be be rather useless now?. :\&lt;/P&gt;</description>
      <pubDate>Sun, 03 May 2015 13:42:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Facebook-Connect-Plugin/m-p/1018160#M37016</guid>
      <dc:creator>David_B_12</dc:creator>
      <dc:date>2015-05-03T13:42:40Z</dc:date>
    </item>
    <item>
      <title>Yes, you must build your app</title>
      <link>https://community.intel.com/t5/Software-Archive/Facebook-Connect-Plugin/m-p/1018161#M37017</link>
      <description>&lt;P&gt;Yes, you must build your app to use the fb plugin.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 May 2015 14:00:15 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Facebook-Connect-Plugin/m-p/1018161#M37017</guid>
      <dc:creator>John_H_Intel2</dc:creator>
      <dc:date>2015-05-04T14:00:15Z</dc:date>
    </item>
    <item>
      <title>Quote:JOHN H. (Intel) wrote:</title>
      <link>https://community.intel.com/t5/Software-Archive/Facebook-Connect-Plugin/m-p/1018162#M37018</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;JOHN H. (Intel) wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;Yes, you must build your app to use the fb plugin.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;So the app is built as crosswalk for android but I'm seeing the Invalid facebook keys error still. &amp;nbsp;Where do I set/get the key?&lt;/P&gt;</description>
      <pubDate>Wed, 20 May 2015 18:44:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Facebook-Connect-Plugin/m-p/1018162#M37018</guid>
      <dc:creator>David_B_22</dc:creator>
      <dc:date>2015-05-20T18:44:04Z</dc:date>
    </item>
    <item>
      <title>Can you provide some</title>
      <link>https://community.intel.com/t5/Software-Archive/Facebook-Connect-Plugin/m-p/1018163#M37019</link>
      <description>&lt;P&gt;Can you provide some screenshots? You can refer to this article as well.&lt;/P&gt;

&lt;P&gt;&lt;A href="https://software.intel.com/en-us/xdk/article/facebook-connect-plugin-android-ios" target="_blank"&gt;https://software.intel.com/en-us/xdk/article/facebook-connect-plugin-android-ios&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 20 May 2015 20:51:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Facebook-Connect-Plugin/m-p/1018163#M37019</guid>
      <dc:creator>Amrita_C_Intel</dc:creator>
      <dc:date>2015-05-20T20:51:31Z</dc:date>
    </item>
    <item>
      <title>Hi Amrita.  I tried again</title>
      <link>https://community.intel.com/t5/Software-Archive/Facebook-Connect-Plugin/m-p/1018164#M37020</link>
      <description>&lt;P&gt;Hi Amrita. &amp;nbsp;I tried again this morning and it worked. &amp;nbsp;I created a new test facebook app on developers.facebook.com&amp;nbsp;but this time I didn't add the android platform to the app as I did in the previous one. &amp;nbsp;I guess that's what might have caused the issue.&lt;/P&gt;

&lt;P&gt;Thanks again.&lt;/P&gt;</description>
      <pubDate>Thu, 21 May 2015 10:16:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Facebook-Connect-Plugin/m-p/1018164#M37020</guid>
      <dc:creator>David_B_22</dc:creator>
      <dc:date>2015-05-21T10:16:52Z</dc:date>
    </item>
    <item>
      <title>I think there is still an</title>
      <link>https://community.intel.com/t5/Software-Archive/Facebook-Connect-Plugin/m-p/1018165#M37021</link>
      <description>&lt;P&gt;I think there is still an issue here. Here's what happens. &amp;nbsp;&lt;/P&gt;

&lt;P&gt;1. &amp;nbsp;Build android app and deploy to device.&lt;/P&gt;

&lt;P&gt;2. &amp;nbsp;FB connect works, my app is connected to the user.&lt;/P&gt;

&lt;P&gt;3. &amp;nbsp;I make another build (same FB_APP_ID etc.), remove the first original build from the phone and redeploy.&lt;/P&gt;

&lt;P&gt;4. FB connect plugin has a login status of 'unknown' as opposed to 'connected' before. &amp;nbsp;The FB window is also now shown with "This app has no Android key hashes configured. Configure your app key hashes at...".&lt;/P&gt;

&lt;P&gt;So how do users receive updated versions of the app without removing it from their facebook settings first? &amp;nbsp;I don't understand.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 May 2015 15:06:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Facebook-Connect-Plugin/m-p/1018165#M37021</guid>
      <dc:creator>David_B_22</dc:creator>
      <dc:date>2015-05-21T15:06:29Z</dc:date>
    </item>
  </channel>
</rss>

