<?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 Please research this issue on in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/google-login/m-p/1044136#M47210</link>
    <description>&lt;P&gt;Please research this issue on StackOverflow under the Cordova link. The XDK creates standard Cordova apps and StackOverflow and the many blogs regarding Cordova apps are your best resource for resolving this question. We do not providing general programming support in this forum, only product-specific support.&lt;/P&gt;</description>
    <pubDate>Mon, 14 Aug 2017 16:28:17 GMT</pubDate>
    <dc:creator>PaulF_IntelCorp</dc:creator>
    <dc:date>2017-08-14T16:28:17Z</dc:date>
    <item>
      <title>google login</title>
      <link>https://community.intel.com/t5/Software-Archive/google-login/m-p/1044132#M47206</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;

&lt;P&gt;I'm developing an app that requires login via google. I followed the tutorial on this page (https://software.intel.com/en-us/html5/articles/oauth2-with-intelxdk-cordova-html5#comment-1809957), but &amp;nbsp;was not able to configure all the parameters correctly. For example I do not understand which value must have parameter Auth_url, or the possible values of scope.&lt;/P&gt;

&lt;P&gt;Can you help me?&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jan 2015 08:58:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/google-login/m-p/1044132#M47206</guid>
      <dc:creator>Alberto_G_</dc:creator>
      <dc:date>2015-01-08T08:58:20Z</dc:date>
    </item>
    <item>
      <title>Did you set the redirect_uri</title>
      <link>https://community.intel.com/t5/Software-Archive/google-login/m-p/1044133#M47207</link>
      <description>&lt;P&gt;Did you try the example at&amp;nbsp;&lt;A href="https://github.com/krisrak/jquery-cordova-oauth2"&gt;https://github.com/krisrak/jquery-cordova-oauth2&lt;/A&gt; which the "Using Oauth 2.0 login for HTML5 apps" article is based on?&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jan 2015 01:12:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/google-login/m-p/1044133#M47207</guid>
      <dc:creator>Elroy_A_Intel</dc:creator>
      <dc:date>2015-01-09T01:12:00Z</dc:date>
    </item>
    <item>
      <title>hi,</title>
      <link>https://community.intel.com/t5/Software-Archive/google-login/m-p/1044134#M47208</link>
      <description>&lt;P&gt;hi,&lt;/P&gt;

&lt;P&gt;thank for your answer.&lt;/P&gt;

&lt;P&gt;Yes, i alredy try the example. I donwloaded the zip file and run it in intel xdk, but when i test the application on device i get this error&lt;/P&gt;

&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="Screenshot_2015-01-09-08-53-49.png"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/7229iC161B71770110C3A/image-size/large?v=v2&amp;amp;px=999&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="Screenshot_2015-01-09-08-53-49.png" alt="Screenshot_2015-01-09-08-53-49.png" /&gt;&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;and this is the code i set&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp;&lt;/P&gt;

&lt;PRE class="brush:xml;"&gt;function oauth2_login() {
    $.oauth2({
        auth_url: 'https://accounts.google.com/o/oauth2/auth',           // required
        response_type: 'token',      // required - "code"/"token"
        client_id: '****.apps.googleusercontent.com',          // required
        redirect_uri: 'http://localhost',       // required - some dummy url
        other_params: {scope:'profile'}        // optional params object for scope, state, display...
    }, function(token, response){
        // do something with token or response
        $("#logs").append("&amp;lt;p class='success'&amp;gt;&amp;lt;b&amp;gt;access_token: &amp;lt;/b&amp;gt;"+token+"&amp;lt;/p&amp;gt;");
        $("#logs").append("&amp;lt;p class='success'&amp;gt;&amp;lt;b&amp;gt;response: &amp;lt;/b&amp;gt;"+JSON.stringify(response)+"&amp;lt;/p&amp;gt;");
    }, function(error, response){
        // do something with error object
        $("#logs").append("&amp;lt;p class='error'&amp;gt;&amp;lt;b&amp;gt;error: &amp;lt;/b&amp;gt;"+JSON.stringify(error)+"&amp;lt;/p&amp;gt;");
        $("#logs").append("&amp;lt;p class='error'&amp;gt;&amp;lt;b&amp;gt;response: &amp;lt;/b&amp;gt;"+JSON.stringify(response)+"&amp;lt;/p&amp;gt;");
    }); 
}
       &lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jan 2015 08:08:59 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/google-login/m-p/1044134#M47208</guid>
      <dc:creator>Alberto_G_</dc:creator>
      <dc:date>2015-01-09T08:08:59Z</dc:date>
    </item>
    <item>
      <title>Hi,</title>
      <link>https://community.intel.com/t5/Software-Archive/google-login/m-p/1044135#M47209</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;I need some help regarding google login in cordova intel xdk, I am able to call google login page but after login not going to my project,Its going somewhere else&lt;/P&gt;</description>
      <pubDate>Mon, 14 Aug 2017 10:19:34 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/google-login/m-p/1044135#M47209</guid>
      <dc:creator>Abhigyan_G_</dc:creator>
      <dc:date>2017-08-14T10:19:34Z</dc:date>
    </item>
    <item>
      <title>Please research this issue on</title>
      <link>https://community.intel.com/t5/Software-Archive/google-login/m-p/1044136#M47210</link>
      <description>&lt;P&gt;Please research this issue on StackOverflow under the Cordova link. The XDK creates standard Cordova apps and StackOverflow and the many blogs regarding Cordova apps are your best resource for resolving this question. We do not providing general programming support in this forum, only product-specific support.&lt;/P&gt;</description>
      <pubDate>Mon, 14 Aug 2017 16:28:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/google-login/m-p/1044136#M47210</guid>
      <dc:creator>PaulF_IntelCorp</dc:creator>
      <dc:date>2017-08-14T16:28:17Z</dc:date>
    </item>
  </channel>
</rss>

