在套接字连接到客户端上发布数据

时间:2019-07-05 05:45:21

标签: websocket apollo-server graphql-subscriptions

我正在使用JWT(RFC 7519)使用AccessToken创建RefreshTokenApollo-Server-express。我需要将新的AccessToken发送到客户端,但RefreshToken仍然有效。可以通过在普通http中设置cookie来实现。但是在subscriptions中,我找不到如何在onConnect文档中发布apollo

const subscriptions = {
  onConnect: async (connectionParams, webSocket) => {
   // I need to send back new AccessToken & RefreshToken to the client here. Is there webSocket.emit() like socket.io?
}}

0 个答案:

没有答案