FromRequest returns a parsed token from the request. If the request does not contain a signed app token or is is invalid (expired, invalid signature, etc.), it returns false.
(r *http.Request)
| 94 | // not contain a signed app token or is is invalid (expired, invalid |
| 95 | // signature, etc.), it returns false. |
| 96 | FromRequest(r *http.Request) (*SignedToken, bool) |
| 97 | // Issue mints a new token for the given app request. It uses the long-lived |
| 98 | // session token in the HTTP request to authenticate and authorize the |
| 99 | // client for the given workspace app. The token is returned in struct and |
no outgoing calls
no test coverage detected