在Firebase Unity中发送短信是否需要Sha1签名?

时间:2018-08-02 11:34:57

标签: c# firebase unity3d firebase-authentication

我正在在Firebase Unity 2018中向用户发送短信。我正在使用以下代码

PhoneAuthProvider provider = PhoneAuthProvider.GetInstance(firebaseAuth);
provider.VerifyPhoneNumber(phoneNumber, phoneAuthTimeoutMs, null,
  verificationCompleted: (credential) => {
  },
  verificationFailed: (error) => {
  },
  codeSent: (id, token) => {
  },
  codeAutoRetrievalTimeout: (id) => {
  }
);

以上代码未触发发送的代码。我搜索了论坛。有人说需要Sha1签名。我对此不太清楚。

任何人都可以共享使用Unity通过firbase发送短信的经验。

是否需要Sha1签名才能生成短信?

0 个答案:

没有答案