Doing the ability to publish posts on facebook. Made a separate application - all works well, the messages are sent. I'm trying to insert the same code to another application using the director class - sending messages does not work, even the login window does not open. What could it be? It's work
local ui = require("ui")
local facebook = require("facebook")
local json = require("json")
local localGroup = display.newGroup()
display.setStatusBar( display.HiddenStatusBar )
-- Facebook Commands
local fbCommand -- forward reference
local LOGOUT = 1
local SHOW_DIALOG = 2
local POST_MSG = 3
local POST_PHOTO = 4
local GET_USER_INFO = 5
local GET_PLATFORM_INFO = 6
local fbButtonLogin2 = display.newImage( "fbButton184.png");
fbButtonLogin2.x = 200;
fbButtonLogin2.y = 100;
local function createStatusMessage( message, x, y )
-- Show text, using default bold font of device (Helvetica on iPhone)
local textObject = display.newText( message, 0, 0, native.systemFontBold, 24 )
textObject:setTextColor( 255,255,255 )
localGroup:insert( textObject)
--group.textObject = textObject
--return group
end
local statusMessage = createStatusMessage( "Not connected ")
local function listener( event )
--- Debug Event parameters printout --------------------------------------------------
-----------------------------------------------------------------------------------------
-- After a successful login event, send the FB command
-- Note: If the app is already logged in, we will still get a "login" phase
--
if ( "session" == event.type ) then
-- event.phase is one of: "login", "loginFailed", "loginCancelled", "logout"
textObject.text = event.phase -- tjn Added
print( "Session Status: " .. event.phase )
if event.phase ~= "login" then
-- Exit if login error
return
end
-- The following displays a Facebook dialog box for posting to your Facebook Wall
if fbCommand == SHOW_DIALOG then
facebook.showDialog( {action="stream.publish"} )
end
-- Request the Platform information (FB information)
if fbCommand == GET_PLATFORM_INFO then
facebook.request( "platform" ) -- **tjn Displays info about Facebook platform
end
-- Request the current logged in user's info
if fbCommand == GET_USER_INFO then
facebook.request( "me" )
-- facebook.request( "me/friends" ) -- Alternate request
end
-- This code posts a photo image to your Facebook Wall
--
if fbCommand == POST_PHOTO then
local attachment = {
name = "Developing a Facebook Connect app using the Corona SDK!",
link = "http://developer.anscamobile.com/forum",
caption = "Link caption",
description = "Corona SDK for developing iOS and Android apps with the same code base.",
picture = "http://developer.anscamobile.com/demo/Corona90x90.png",
actions = json.encode( { { name = "Learn More", link = "http://anscamobile.com" } } )
}
facebook.request( "me/feed", "POST", attachment ) -- posting the photo
end
-----------------------------------------------------------------------------------------
elseif ( "request" == event.type ) then
-- event.response is a JSON object from the FB server
local response = event.response
if ( not event.isError ) then
response = json.decode( event.response )
if fbCommand == GET_USER_INFO then
textObject.text = response.name
--fbButtonLogin1.isVisible = false;
--fbButtonLogin2.isVisible = false;
--printTable( response, "User Info", 3 )
--print( "name", response.name )
elseif fbCommand == POST_PHOTO then
printTable( response, "photo", 3 )
statusMessage.textObject.text = "Photo Posted"
elseif fbCommand == POST_MSG then
printTable( response, "message", 3 )
statusMessage.textObject.text = "Message Posted"
else
-- Unknown command response
print( "Unknown command response" )
statusMessage.textObject.text = "Unknown ?"
end
fbButtonLogin.isVisible = false;
else
-- Post Failed
statusMessage.textObject.text = "Post failed"
printTable( event.response, "Post Failed Response", 3 )
end
elseif ( "dialog" == event.type ) then
-- showDialog response
--
print( "dialog response:", event.response )
statusMessage.textObject.text = event.response
end
end
local appId = '422261987803221' -- Add your App ID here
local apiKey = '681bf27076da93fa3cbe1d180ae3c299' -- Not needed at this time
local function postPhoto_onRelease( event )
-- call the login method of the FB session object, passing in a handler
-- to be called upon successful login.
fbCommand = POST_PHOTO
facebook.login( appId, listener, {"publish_stream"} )
--facebook.login( appId, listener, {"publish_stream"} )
end
local function getInfo_onRelease( event )
-- call the login method of the FB session object, passing in a handler
-- to be called upon successful login.
fbCommand = GET_USER_INFO
facebook.login( appId, listener, {"publish_stream"} )
end
local fbButton = ui.newButton{
default = "fbButton184.png",
over = "fbButtonOver184.png",
onRelease = postPhoto_onRelease,
text = " Post Photo",
x = 200,
y = 300
}
local fbButtonLogin1 = display.newImage( "fbButton184.png");
fbButtonLogin1.x = 200;
fbButtonLogin1.y = 400;
local fbButtonLogin = ui.newButton{
default = "fbButton184.png",
over = "fbButtonOver184.png",
onRelease = getInfo_onRelease,
text = "Get User",
x = 200,
y = 350
}
Doesn't work
module(..., package.seeall)
function new()
local ui = require("ui")
local facebook = require("facebook")
local json = require("json")
local localGroup = display.newGroup()
display.setStatusBar( display.HiddenStatusBar )
-- Facebook Commands
local fbCommand -- forward reference
local LOGOUT = 1
local SHOW_DIALOG = 2
local POST_MSG = 3
local POST_PHOTO = 4
local GET_USER_INFO = 5
local GET_PLATFORM_INFO = 6
local fbButtonLogin2 = display.newImage( "fbButton184.png");
fbButtonLogin2.x = 200;
fbButtonLogin2.y = 100;
local function createStatusMessage( message, x, y )
-- Show text, using default bold font of device (Helvetica on iPhone)
local textObject = display.newText( message, 0, 0, native.systemFontBold, 24 )
textObject:setTextColor( 255,255,255 )
localGroup:insert( textObject)
--group.textObject = textObject
--return group
end
local statusMessage = createStatusMessage( "Not connected ")
local function listener( event )
--- Debug Event parameters printout --------------------------------------------------
-----------------------------------------------------------------------------------------
-- After a successful login event, send the FB command
-- Note: If the app is already logged in, we will still get a "login" phase
--
if ( "session" == event.type ) then
-- event.phase is one of: "login", "loginFailed", "loginCancelled", "logout"
textObject.text = event.phase -- tjn Added
print( "Session Status: " .. event.phase )
if event.phase ~= "login" then
-- Exit if login error
return
end
-- The following displays a Facebook dialog box for posting to your Facebook Wall
if fbCommand == SHOW_DIALOG then
facebook.showDialog( {action="stream.publish"} )
end
-- Request the Platform information (FB information)
if fbCommand == GET_PLATFORM_INFO then
facebook.request( "platform" ) -- **tjn Displays info about Facebook platform
end
-- Request the current logged in user's info
if fbCommand == GET_USER_INFO then
facebook.request( "me" )
-- facebook.request( "me/friends" ) -- Alternate request
end
-- This code posts a photo image to your Facebook Wall
--
if fbCommand == POST_PHOTO then
local attachment = {
name = "Developing a Facebook Connect app using the Corona SDK!",
link = "http://developer.anscamobile.com/forum",
caption = "Link caption",
description = "Corona SDK for developing iOS and Android apps with the same code base.",
picture = "http://developer.anscamobile.com/demo/Corona90x90.png",
actions = json.encode( { { name = "Learn More", link = "http://anscamobile.com" } } )
}
facebook.request( "me/feed", "POST", attachment ) -- posting the photo
end
-----------------------------------------------------------------------------------------
elseif ( "request" == event.type ) then
-- event.response is a JSON object from the FB server
local response = event.response
if ( not event.isError ) then
response = json.decode( event.response )
if fbCommand == GET_USER_INFO then
textObject.text = response.name
--fbButtonLogin1.isVisible = false;
--fbButtonLogin2.isVisible = false;
--printTable( response, "User Info", 3 )
--print( "name", response.name )
elseif fbCommand == POST_PHOTO then
printTable( response, "photo", 3 )
statusMessage.textObject.text = "Photo Posted"
elseif fbCommand == POST_MSG then
printTable( response, "message", 3 )
statusMessage.textObject.text = "Message Posted"
else
-- Unknown command response
print( "Unknown command response" )
statusMessage.textObject.text = "Unknown ?"
end
fbButtonLogin.isVisible = false;
else
-- Post Failed
statusMessage.textObject.text = "Post failed"
printTable( event.response, "Post Failed Response", 3 )
end
elseif ( "dialog" == event.type ) then
-- showDialog response
--
print( "dialog response:", event.response )
statusMessage.textObject.text = event.response
end
end
local appId = '422261987803221' -- Add your App ID here
local apiKey = '681bf27076da93fa3cbe1d180ae3c299' -- Not needed at this time
local function postPhoto_onRelease( event )
-- call the login method of the FB session object, passing in a handler
-- to be called upon successful login.
fbCommand = POST_PHOTO
facebook.login( appId, listener, {"publish_stream"} )
--facebook.login( appId, listener, {"publish_stream"} )
end
local function getInfo_onRelease( event )
-- call the login method of the FB session object, passing in a handler
-- to be called upon successful login.
fbCommand = GET_USER_INFO
facebook.login( appId, listener, {"publish_stream"} )
end
local fbButton = ui.newButton{
default = "fbButton184.png",
over = "fbButtonOver184.png",
onRelease = postPhoto_onRelease,
text = " Post Photo",
x = 200,
y = 300
}
local fbButtonLogin1 = display.newImage( "fbButton184.png");
fbButtonLogin1.x = 200;
fbButtonLogin1.y = 400;
local fbButtonLogin = ui.newButton{
default = "fbButton184.png",
over = "fbButtonOver184.png",
onRelease = getInfo_onRelease,
text = "Get User",
x = 200,
y = 350
}
return localGroup;
end