OpenFeint - data not shown in leaderboard

Hello
I’m trying to play with openfeint support in Corona - I’ve create small application, registered and approved it on openfeint, and using following code to try to submit data to openfeint leaderboard:

local openfeint = require("openfeint")  
  
-- here goes real value I've obtained from openfeint  
local of\_product\_key = "XXXXXX"  
local of\_product\_secret = "YYYYYYYYYYYYYYYYYYY"  
local of\_app\_id = "ZZZZZZZ"  
  
openfeint.init( of\_product\_key, of\_product\_secret, "My Sharky Pool", of\_app\_id )  
  
openfeint.launchDashboard( "Championships" )  
  
openfeint.setHighScore( { leaderboardID="Championships", score=12463, displayText="Peter: 12,463 pts" } )  
  

But when I’m looking into leaderboards I can see that Championships leaderboard has HS Count = 0. Am I doing something wrong?
Any help is welcome! [import]uid: 67485 topic_id: 11451 reply_id: 311451[/import]

I think your leaderboardID is incorrect

I think it should be a number

ie. leaderboardID=123456

This is what my code looks like

[lua]local xpLeaderboardID = 785926
openfeint.setHighScore( { leaderboardID=xpLeaderboardID, score=careerXP, displayText=careerXPText } )[/lua] [import]uid: 63413 topic_id: 11451 reply_id: 41508[/import]

Yes, leaderboardid is numeric

[lua]-- Set id for highscore list in OpenFeint System
lbID = “787246”
numScore = 1234567890
openfeint.setHighScore( lbID, numScore)[/lua] [import]uid: 22737 topic_id: 11451 reply_id: 41533[/import]

Hi guys
Thank you for your answers! But I’m still having the same problem. I’ve created a test app which does nothing but only sends request to OpenFeint. And I’m testing it on simulator under Windows.
Here is the complete code of this app:

[code]
local openfeint = require(“openfeint”)

local of_product_key = “a5HJUoJ7BPeJBylHhRuxmz”
local of_product_secret = “J97XYtAbeuSb9JZV41TP7K25aBW3aKkRsVdeD2RSBYy”
local of_app_id = “308376”

openfeint.init( of_product_key, of_product_secret, “Sharky Pool”, of_app_id )

openfeint.setHighScore( { leaderboardID=“787131”, score=12463, displayText=“Peter: 12,463 pts” } )

[/code] [import]uid: 67485 topic_id: 11451 reply_id: 42054[/import]

Ok, I’ve found the problem :slight_smile: From docs:
Remarks:
API is not available in Corona Simulator.

P.S. BTW - why?

[import]uid: 67485 topic_id: 11451 reply_id: 42056[/import]

After you have registered your app on openfeint and got the product key, app ID and product secret is it possible to change the app name later or do I have to get new key/ID/secret to go with the new name [import]uid: 43696 topic_id: 11451 reply_id: 42060[/import]