Questions tagged [authorization]
Authorization is the process of determining whether a user, program or device is allowed to access a protected resource in a particular way. Authorization is a key theme in computer security practices.
9,430
questions
0votes
0answers
8views
Sign In Problem Authorization and Authentication
Hi guys i have 2 question in this topic
Question 1:
I'm trying to sign in but user is coming null when i FindByNameAsync
Registered user's normalizedUserNames is always created null in sql too
im ...
0votes
0answers
11views
how can I customize error response from aws authorizer function?
I have written a lambda authorizer function that calls two custom authorization services to validate the input token. So, from lambda authorizer, I want to return different possible messages for the ...
0votes
0answers
11views
Get access to shared power bi report via the app
A 3rd party company shared a power bi report with me that I can access via the URL like https://app.powerbi.com/reportEmbed?reportId={report_id}&autoAuth=true&ctid={ctid}&config={...
0votes
0answers
14views
Discord oauth2 /users/@me/guilds error 401
It is supposed to get all the guilds a user is joined in. It gets the bearer auth right, but it always errors with code 401. When using a external API (https://reqbin.com/) with auth to test the ...
0votes
0answers
12views
Manage User Roles In Node.js
I'm trying to add roles in my project for authorization I'm using nodejs & express and here I'm facing a problem roles is undefined can someone help me to solve it.
Error:
TypeError: Cannot read ...
0votes
0answers
14views
supertokens revoke other users active sessions
I have a webapp that manages authorization and user roles via supertokens. When a session is initialized the app reads user role from database and passes it to supertokens role initialization.
Some ...
0votes
0answers
6views
jupyterhub ldap auth using certificate - how to
This is similar to the existing one - Setting up LDAP for Jupyter Server
Where ,instead of using "bind_user_password", i want to try using certificate, i.e below lines that is being ...
0votes
0answers
15views
Protected Routes are still protected after login
I'm a React beginner and I'm trying to protect some routes, however, even though the routes are well protected before authorization(Login), they are still protected after login and I get redirected to ...
0votes
0answers
7views
Python Sockets 400 status when authorization ends with "="
I am trying to a socket application in Python3. However, in some tests it gives 400 status code even though some tests are working correctly. Then I realized that this causes whenever the ...
1vote
1answer
34views
laravel 9: custom login process
I created a custom guard because I want to authorize users on a custom table. So I followed this guide: tutorial
But in my custom Auth Controller if I use auth()->user(); and then redirect()->...
0votes
0answers
18views
How to handle permissions to API in nodejs with mongoDB
Description of the situation
I have an API for sharing inventory between bussinesses and e-commerce sites.
The businesses uploads thier inventory and the sites can pull it to present it.
Each business ...
0votes
0answers
4views
Question Webservice Authentication/Authorization
I have a web service (asmx), and it contains nearly more than 100 Web Methods. I need to implement the authentication to the web service. But it can be done with SOAPHeaders. I would like to know, do ...
-2votes
0answers
9views
Problem when creating a service that should get user information from people.google.service
I'm having a problem with a service I've created to get user information in people.google.service. I'm throwing an exception.
System.InvalidOperationException: Cannot get credential when not ...
0votes
1answer
23views
How to extract accesss token value from one API response body(in one class) into another API header(in another class) in rest assured code
Have one token generation API in one class which gives the below response.
{
"access_token": "...
0votes
0answers
23views
Rest API authorization in microservice when you have 1000's of APIs
We are developing back-office user application with lots of screens which interacting with lots of REST API's. In OAUTH, most of the tutorials are showing how to authorize an API by getting details ...