gpt4 book ai didi

android - 在 Android 上获取 OpenFeint 播放器 ID

转载 作者:行者123 更新时间:2023-11-29 22:19:09 25 4
gpt4 key购买 nike

我已经将 OpenFeint 集成到我的 Android 游戏中,我想知道我需要添加什么才能获得 OpenFeint 玩家 ID。我想要 id 或用户名,这样我就可以允许用户在设备之间转移他们的游戏帐户,使用 OpenFeint 进行身份验证。

这是我使用 OpenFeint 的代码:

OpenFeintSettings ofsettings = new OpenFeintSettings(gameName, gameKey, gameSecret, gameID);
OpenFeint.initialize(this, ofsettings, new OpenFeintDelegate() {});

最佳答案

@Andy 嗨,当我在我开发的游戏中实现 openFeint 时,我也需要玩家 ID

我使用了下面的代码

    import com.openfeint.api.OpenFeint;  
import com.openfeint.api.resource.User;
import android.app.Activity;
import android.os.Bundle;

public class ABC extends Activity {


User u;
String Name;



@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);

setContentView(R.layout.score);



u = OpenFeint.getCurrentUser();

// user id received

Name = u.name;

System.out.println("** The User id is ** " + Name );

}
}

关于android - 在 Android 上获取 OpenFeint 播放器 ID,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7732460/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com