我将swagger用于我的nodejs文档。我想测试Google登录名,基本上,当进入/ auth / google时,您应该会看到google authentication屏幕屏幕
router
.route('/google')
.get(
checkToken(true),
passport.authenticate('google', {scope: 'profile email'}),
)
我想将此路线添加到招摇中。
/**
* @swagger
*
* /auth/google:
* get:
* tags:
* - Authentication
* summary: Google authentication
*/
期望:Swagger将在新标签页中打开链接并显示google登录界面 但是大胆地尝试获取源代码却什么也没显示
如何大张旗鼓地打开/ auth / google链接?谢谢
更新:我们可以这样做
description: Click here [/auth/google](/auth/google) for Google Authentication