Rui Silva
Rui Silva
Right now, the OAuthTokenProvider `secure` option is `true` by default. While this can be configured by the developer, we can improve this by setting it automatically based on `$location.protocol()`. Refs...
The `invalid_request` is only sent due to missing or invalid parameters which are programmatic errors and should not be checked in runtime. https://github.com/seegno/angular-oauth2/blob/master/src/interceptors/oauth-interceptor.js#L20
We should validate if the `refresh_token` exists: https://github.com/seegno/angular-oauth2/blob/master/src/providers/oauth-provider.js#L152
The `list` component should accept parameters to generate various list types, e.g., ``` @mixin ucss-list($style) { padding-left: 0; list-style: none; @if ("inline" == $style) { > li { display: inline-block;...
Color variables must be lowercase and shorthand.
Check out [idiomatic-css](https://github.com/necolas/idiomatic-css) and other resources to create better comment sections.
#### Description The `.api` method should allow different `content-type`. Right now, it's only allowing `application/json` and forcing the `body` to be stringified. Let's discuss the better approach to handle it....