如何使用 REST + CodeceptJS 测试 API,访问权限受 Auth0 保护?

How do I test the API using REST + CodeceptJS, access to which is protected with Auth0?

我想使用 REST helper(对于 CodeceptJS)为 API

编写自动化测试

困难在于 API 的访问受 OAuth2 保护。

如果有人有通过 OAuth2 授权使用 REST + CodeceptJS 编写自动测试的经验,请告诉我您的案例,我将不胜感激

您可以使用 OAuth2 在您的助手中添加默认值 header :

REST: {
      endpoint: 'https://baseurl/endpoint',
      defaultHeaders:{
        Authorization: 'Bearer xxxtoken'
      },
    },