Sha256: 88056c4f4718465a1be44edce31c9436627bf690ba684865d4a7b8d9d9156f0e

Contents?: true

Size: 1.8 KB

Versions: 37

Compression:

Stored size: 1.8 KB

Contents

= Documentation for JWT CORS Feature

The jwt_cors feature adds support for Cross-Origin Resource Sharing
to Rodauth's JSON API.

When this feature is used, CORS requests are handled.  This includes
CORS preflight requests, which are required since Rodauth's JSON API
uses the application/json request content type.

This feature depends on the jwt feature.

== Auth Value Methods

jwt_cors_allow_headers :: For allowed CORS-preflight requests, the value returned in the Access-Control-Allow-Headers header (default: 'Content-Type, Authorization, Accept'). This specifies which headers can be included in CORS requests.
jwt_cors_allow_methods :: For allowed CORS-preflight requests, the value returned in the Access-Control-Allow-Methods header (default: 'POST'). This specifies which methods are allowed in CORS requests.
jwt_cors_allow_origin :: Which origins are allowed to perform CORS requests.  The default is +false+.  This can be a String, Array of Strings, Regexp, or +true+ to allow CORS requests from any domain.
jwt_cors_expose_headers :: For allowed CORS requests, the value returned in the Access-Control-Expose-Headers header (default: 'Authorization'). This specifies which headers the browser is allowed to access from a response to a CORS request.
jwt_cors_max_age :: For allowed CORS-preflight requests, the value returned in the Access-Control-Max-Age header (default: 86400). This specifies how long before the information returned should be considered stale and another CORS preflight request made.

== Auth Methods

jwt_cors_allow? :: Whether the request should be allowed.  This is called for all requests for a Rodauth route that include an Origin header.  It should return true or false for whether to specially handle the cross-origin request.  By default, uses the +jwt_cors_allow_origin+ setting to check the origin.

Version data entries

37 entries across 37 versions & 1 rubygems

Version Path
rodauth-2.36.0 doc/jwt_cors.rdoc
rodauth-2.34.0 doc/jwt_cors.rdoc
rodauth-2.33.0 doc/jwt_cors.rdoc
rodauth-2.32.0 doc/jwt_cors.rdoc
rodauth-2.31.0 doc/jwt_cors.rdoc
rodauth-2.30.0 doc/jwt_cors.rdoc
rodauth-2.29.0 doc/jwt_cors.rdoc
rodauth-2.28.0 doc/jwt_cors.rdoc
rodauth-2.27.0 doc/jwt_cors.rdoc
rodauth-2.26.1 doc/jwt_cors.rdoc
rodauth-2.26.0 doc/jwt_cors.rdoc
rodauth-2.25.0 doc/jwt_cors.rdoc
rodauth-2.24.0 doc/jwt_cors.rdoc
rodauth-2.23.0 doc/jwt_cors.rdoc
rodauth-2.22.0 doc/jwt_cors.rdoc
rodauth-2.21.0 doc/jwt_cors.rdoc
rodauth-2.20.0 doc/jwt_cors.rdoc
rodauth-2.19.0 doc/jwt_cors.rdoc
rodauth-2.18.0 doc/jwt_cors.rdoc
rodauth-2.17.0 doc/jwt_cors.rdoc