Hi,
I receive auth token according to documentation and pass it durring login
CometChat.login(authToken)
ComentChat works fine in general but when I execute something like
CometChat.callExtension(‘reactions’, ‘POST’, ‘v1/react’, {
msgId: “1111”,
emoji: “:emoji:”
})
the response is:
error: {message: “Invalid value “undefined” for header “authToken””}
Though I can see that right headers were passed with request:
appid: 111111111111111
authtoken: 1111111-1111-1111-1111-111111111111_111111111…111
where first part of the token is a right user uid and the last part was generated somehow. I also can see this auth token on the page https://app.cometchat.com/app …/ user / auth tokens
Request is sent to https://reactions-us.cometchat.io/v1/react from Angular app.
Also need to mention that this implementation was already working before and looks like nothing was changed in code or coment chat configuration since then (unless I missed something). Maybe there’re some tech issues on your side or you have any ideas? Thanks