Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to post this message to facebook :I have achieved (".. scorepost,") points, playing... download for FREE iPhone & Android at www.site

But it is only posting: I have achieved 1000) 1000 is the result of math.random(100, 1000); that bit is working and is posting the correct number every time, but it is not posting the rest : points, playing... download for FREE iPhone & Android at www.site

local facebook = require "facebook"
local fbAppID = "appID" 

scorepost =  math.random(100, 1000);    
keeping_score = true
scoreText = display.newTmessageext( "Score: " .. scorepost,  20, 20,nil, 40)
scoreText:setTextColor(255,255,255)

local faceFunc = function ()

function onLoginSuccess()
  facebook.request( "me/feed", "POST", {message = "I have achieved (".. scorepost,") points, playing... download for FREE iPhone & Android at www.site"} )
end

-- facebook listener
function fbListener( event )
    if event.isError then
        native.showAlert( "ERROR", event.response, { "OK" } )
    else
        if event.type == "session" and event.phase == "login" then
            -- login was a success; call function
            onLoginSuccess()

        elseif event.type == "request" then
            -- this block is executed upon successful facebook.request() call

            native.showAlert( "Success", "The post has been uploaded.", { "OK" } )
        end
    end
end

-- photo uploading requires the "publish_stream" permission
facebook.login( fbAppID, fbListener, { "publish_stream" } )

end

--Button to activate the post to facebook
local facebutton = display.newRect (0, 0, 50, 50)
facebutton.x = display.contentWidth/2; facebutton.y = display.contentHeight/2
facebutton:addEventListener("tap", faceFunc)
share|improve this question

2 Answers

up vote 2 down vote accepted

Shouldn't you concatenate the strings; like this:

facebook.request( "me/feed", "POST", {message = "I have achieved (".. scorepost .. ") points, playing... download for FREE iPhone & Android at www.site"} )
share|improve this answer

You are using a "," instead of ".." after scorepost, so, assuming scorepost is 100, you are sending something like:

{
  "message":"I have achieved (1oo",
  ") points, playing... download for FREE iPhone & Android at www.site"
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.