Facebook Flash游戏数据存储方法
嗨,我目前正在开发一款 facebook 游戏,除了存储部分之外,游戏已经准备就绪!您建议我如何存储我的数据!我将使用数据库,但是从 facebook 获取数据的最佳方式是什么?进入我的数据库槽闪存?非常感谢!
Hy, i am currently working on a facebook game,the game is good and ready except the storing part!How do you suggest i should store my data!I will use a database, but what is the best way to get data from facebook and into my database trough flash?Thanks a lot!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过使用 get 和 set 方法来使用数据库。
示例:
设置:将用户数据设置到数据库中 ( www.mysite.com/fb/game/store.ashx?uid=&score=&level=__; )
返回:成功或失败
获取:从数据库中获取用户数据( www.mysite.com/fb/game/getUserData.ashx ?uid=__; )
返回:用户数据
u can use database, by using get and set method.
Example:
Set: set the user data into database ( www.mysite.com/fb/game/store.ashx?uid=&score=&level=__; )
return: success or failed
Get: get the user data from database ( www.mysite.com/fb/game/getUserData.ashx?uid=__; )
return: user data