Posts by rafakwolf • 118 points
4 posts
-
1
votes2
answers100
viewsA: How to search for a particular package by npm?
To fetch a package, run the following command: npm search pacote_desejado For example npm search express will bring you a result like this: Thanks!…
-
1
votes1
answer82
viewsA: Token Provider Asp.Net Webapi
Answering my own question: BearerOptions = new OAuthBearerAuthenticationOptions { Provider = new OAuthBearerAuthenticationProvider(), AccessTokenProvider = Options.AccessTokenProvider // -- Esta…
-
2
votes1
answer82
viewsQ: Token Provider Asp.Net Webapi
in the company we work we do authentication and authorization via Bearer Token in an Asp.net webapi app, but I keep some information about user permissions with Claims... and this makes Token look…
-
6
votes1
answer232
viewsQ: User who has permission to create other SQL Server users
I’m trying to use a user other than SA to create new users on an SQL Server 2014 basis, I’ve tried the roles db_accessadmin and db_securityadmin, but they do not give permissions to change other…