我使用react聊天引擎库创建了一个小型聊天应用程序。这是UI图像
但是即使我提供了正确的凭据,聊天也没有加载。它给出了GET https://api.chatengine.io/chats/latest/25/ 403。代码端没有任何错误。我使用Firebase身份验证来获取登录的用户详细信息。使用Auth上下文设置用户详细信息。这些过程都正常工作。我不知道这个问题。
import React,{useRef,useEffect,useState} from "react";
import { useHistory } from "react-router-dom";
import {ChatEngine} from 'react-chat-engine';
import { auth } from "../firebase";
import {useAuth} from '../contexts/AuthContext';
import axios from "axios";
const Chats = () => {
const history = useHistory();
const {user}= useAuth();
const[loading,setLoading]=useState(true);
const getFile =async (url) =>{
const response = await fetch(url);
const data =await response.blob();
return new File([data],"userPhoto.jpg",{type:"image/jpeg"})
}
useEffect(()=>{
if(!user){
history.push('/')
return;
}
axios.get('https://api.chatengine.io/users/me',{
headers:{
"project-id":"8dc9fa0e-7ed4-40ec-a003-a7c76a11e7f7",
"user-name":user.email,
"user-secret":user.uid
}
})
.then(()=>{
setLoading(false);
})
.catch(()=>{
let formdata=new FormData();
formdata.append('email',user.email);
formdata.append('username',user.email);
formdata.append('secret',user.uid);
getFile(user.photoURL)
.then((avatar)=>{
formdata.append('avatar',avatar,avatar.name)
axios.post('https://api.chatengine.io/users/',
formdata,
{headers:{"private-key":"1445fb04-f7c9-42d2-b63b-3019a881d3a3"}}
).then(()=>setLoading(false))
.catch(error => console.log(error))
})
})
},[user,history])
const LogoutHandler =async()=>{
await auth.signOut();
history.push('/');
}
if(!user || loading) return 'Loading ...';
return (
<div className="chat-page">
<div className="nav-bar">
<div className="logo-tab">UEassyMessage</div>
<div className="logout-tab" onClick={LogoutHandler}>Logout</div>
</div>
<ChatEngine
height="calc(100vh-66px)"
projectID= '8dc9fa0e-7ed4-40ec-a003-a7c76a11e7f7'
userName={user.email}
userScret={user.uid}
/>
</div>
);
};
export default Chats;
有人能对这个问题有想法吗?
3条答案
按热度按时间vvppvyoh1#
不知道你是否仍然有这个问题,但在
ChatEngine
属性中,它应该是userSecret
而不是 userScret。我也有同样的问题,因为我写projectID
时使用了小写d。cyvaqqii2#
我认为你的
projectID={}
prop 中有一个空间,这可能是有问题的。确保你把它拿走,然后再试一次。flvtvl503#
1.删除项目ID中的空格并将ID大写
1.如果这不起作用,请将私钥添加到'axios.get'中