open-banking-gateway icon indicating copy to clipboard operation
open-banking-gateway copied to clipboard

Cleanup unused OAuth2 scheme from API

Open valb3r opened this issue 5 years ago • 0 comments
trafficstars

OAuth2 scheme in OpenBanking API is not used, instead request signing is used we need to fix that

  securitySchemes:
    BearerAuthOAuth:
      description: |
        Bearer Token.
      type: http
      scheme: bearer
    accessCode:
      type: oauth2
      flows:
        authorizationCode:
          authorizationUrl: "http://example.com/oauth/auth"
          tokenUrl: "http://example.com/oauth/token"
          scopes:
            write: allows modifying resources
            read: allows reading resources

valb3r avatar Nov 03 '20 11:11 valb3r