#reactjs #vercel #react-chat-engine
Вопрос:
Я пытаюсь динамически подключить пользователя firebase к своему проекту chatengineio, и я продолжаю получать сообщение об ошибке 502, в котором говорится: «Необработанный отказ: ошибка типа: помощник.createServerWithHelpers не является функцией». Я не уверен, что это проблема с моим кодом или с версией vercel, которую я использую (23.1.2), но я не могу найти ничего полезного в Интернете?
Я бегу с помощью vercel. Вот метод, который я использую для отправки сообщения в ChatEngineIo:
const createUser = async (req, res) =gt; { const { userId, userName } = req.body; axios .post( "https://api.chatengine.io/projects/people/", { username: userName, secret: userId }, { headers: { "Private-Key": process.env.chat_engine_private_key, // "key": "access-control-allow-origin", // "value": "*" } } ) .then(apiRes =gt; { res.json({ body: apiRes.data, error: null, }); }) .catch(() =gt; { res.json({ body: null, error: "There was an error creating the user!", }); }); }; export default createUser; and I keep getting a 502 error saying "Unhandled rejection: TypeError: helper.createServerWithHelpers is not a function". I am not sure if this is an issue with my code or with the vercel version I am using (23.1.2) but I can't find anything helpful online?