예제 #1
0
    void GetFacebookData(Facebook.Unity.IGraphResult result)
    {
        string fbName = result.ResultDictionary["name"].ToString();
        string email  = result.ResultDictionary["email"].ToString();

        signupApi            = new SignupApi();
        signupApi.user_name  = fbName;
        signupApi.user_email = email;
        Debug.Log("fbName: " + fbName);
        Debug.Log("email: " + email);
        StartCoroutine("Signup");
    }
예제 #2
0
 public void Init()
 {
     instance = new SignupApi();
 }
예제 #3
0
 void Awake()
 {
     signupApi        = new SignupApi();
     invalidText.text = "";
 }