如何在React中将POST请求发送到Firebase REST API

时间:2020-07-22 17:30:57

标签: reactjs firebase rest express firebase-authentication

我正在尝试使用OAuth凭据登录,该凭据涉及向Auth verifyAssertion端点发出HTTP POST请求。我将如何在语法上执行此操作?我正在尝试遵循此Firebase文档,但它们使用curl作为示例。

https://firebase.google.com/docs/reference/rest/auth/#section-sign-in-with-oauth-credential

端点为https://identitytoolkit.googleapis.com/v1/accounts:signInWithIdp?key=[API_KEY]

1 个答案:

答案 0 :(得分:0)

您可以选择使用本机获取api

window.fetch('https://url-you-want-to-post-to.com/',{方法:'POST',正文:{//正文数据}})

或者您可以使用axios之类的第三方库(尽管您需要先npm安装它,然后再导入)