()
| 66 | import BaseAuthCodeAdapter from './BaseCodeAuthAdapter'; |
| 67 | class QqAdapter extends BaseAuthCodeAdapter { |
| 68 | constructor() { |
| 69 | super('qq'); |
| 70 | } |
| 71 | |
| 72 | async getUserFromAccessToken(access_token) { |
| 73 | const response = await fetch('https://graph.qq.com/oauth2.0/me', { |
nothing calls this directly
no outgoing calls
no test coverage detected