Skip to content

Commit

Permalink
Merge pull request #7 from pingwang2011/timob-10099
Browse files Browse the repository at this point in the history
timob-10099: Android: Facebook - Login failures
  • Loading branch information
srahim committed Jul 25, 2012
2 parents 1bf7cee + 4b7f56c commit edb3dcd
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<key>CFBundleURLSchemes</key>
<array>
<string>kitchensink</string>
<string>fb134793934930</string>
<string>fb495338853813822</string>
</array>
</dict>
</array>
Expand Down
2 changes: 1 addition & 1 deletion Resources/ui/common/mashups/facebook_login_logout.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ function fb_login_logout(_args) {
var win = Ti.UI.createWindow({
backgroundColor:'#fff'
});
Titanium.Facebook.appid = "134793934930";
Titanium.Facebook.appid = "495338853813822";
Titanium.Facebook.permissions = ['publish_stream', 'read_stream'];
//
// Login Status
Expand Down
2 changes: 1 addition & 1 deletion Resources/ui/common/mashups/facebook_photos.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
function fb_photos() {
/*globals Titanium, Ti, alert, require, setTimeout, setInterval, JSON*/
var win = Ti.UI.createWindow({backgroundColor:'#fff'});
Titanium.Facebook.appid = "134793934930";
Titanium.Facebook.appid = "495338853813822";
Titanium.Facebook.permissions = ['publish_stream', 'read_stream'];

var B1_TITLE = "Upload Photo from Gallery with Graph API";
Expand Down
2 changes: 1 addition & 1 deletion Resources/ui/common/mashups/facebook_properties.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function fb_properties() {
});
win.add(sv);

Titanium.Facebook.appid = "134793934930";
Titanium.Facebook.appid = "495338853813822";
Titanium.Facebook.permissions = ['publish_stream', 'read_stream'];

var plist = []; // list of known FB permissions as of Jan 2011 (see bottom)
Expand Down
2 changes: 1 addition & 1 deletion Resources/ui/common/mashups/facebook_publish_stream.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
function fb_pub_stream() {
/*globals Titanium, Ti, alert, require, setTimeout, setInterval, JSON*/
var win = Ti.UI.createWindow({backroundColor:'#fff'});
Titanium.Facebook.appid = "134793934930";
Titanium.Facebook.appid = "495338853813822";
Titanium.Facebook.permissions = ['publish_stream', 'read_stream'];

function showRequestResult(e) {
Expand Down
2 changes: 1 addition & 1 deletion Resources/ui/common/mashups/facebook_query.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ function fb_query() {
//
// Login Button
//
Titanium.Facebook.appid = "134793934930";
Titanium.Facebook.appid = "495338853813822";
Titanium.Facebook.permissions = ['publish_stream', 'read_stream'];
var fbButton = Titanium.Facebook.createLoginButton({
bottom:10
Expand Down

0 comments on commit edb3dcd

Please sign in to comment.