1,149 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
187
views
File Upload via Livewire Returns 401 Unauthorized in Laravel (Nginx, Cloudflare)
I ran into an issue when trying to upload files using Livewire on my production server. The server responded with 401 Unauthorized.
My setup includes:
Cloudflare with Flexible SSL (Browser → ...
0
votes
0
answers
35
views
AWS Sam Build from Dos Command Prompt throws 401 Unauthorized Error because it can Not access our company's Sonatype Nexus Repository Server
At our company, we retrieve Nuget Packages from our company's Sonatype Nexus Repository Server.
sam --version SAM CLI
, version 1.124.0
In Dos Command Prompt, I execute the following:
nuget sources ...
0
votes
0
answers
53
views
CloudFront throws 401 or 403 before accessing to API Gateway
This is my first time deploying a web application using AWS and I could successfully see the static pages but not dynamic pages now.
I've read that when CloudFront gets a header with authorization, it ...
0
votes
0
answers
80
views
Webscrape with Node.js - Javascript with login
I have been scraping a investment site with Python and Selenium but due to changes needed to system I will no longer be able to use Python and only option I seem to have is Node.JS / NodeRed
Anyhow I ...
0
votes
2
answers
2k
views
why im getting Invalid client or Invalid client credentials in keycloak generate a token URL
postman
postman
In Keycloak, I've created a client (wedding-api), assigned roles, and set up user role mappings. I'm trying to get an access token using the password grant via Postman, but I can't ...
1
vote
1
answer
92
views
Is there a reason my Figma Embed API responds with "Unauthorised"?
I am trying to integrate a Figma prototype into an angular app and I need to use the Figma Embed API to track specific data like paths followed and user clicks. I have followed the Oauth steps and set ...
0
votes
0
answers
51
views
Http Error 401 Error Contact the Site Owner [duplicate]
I am shown the error: This page isn’t working right now If the problem continues, contact the site owner. HTTP ERROR 401 in my Asp.Net Core Application. I am using JWT Authentication in my Asp.Net ...
0
votes
0
answers
84
views
Fastify and Next.js integration issue
So, I deployed my frontend on Vercel and my API on Google Cloud Run with docker. It works fine on the development mode however, in production I can't log in with firebase auth.
Logging in with ...
-1
votes
1
answer
113
views
This page isnt working now. If the problem continues,contact the site owner. HTTP Error 401
I am trying to access the URL: https://localhost:7252/AssetCategory/Index in ASP.Net MVC Application.I logged the User via Postman. I have the following code in my AssetCategoryController.cs:
using ...
0
votes
1
answer
92
views
JanusGraph Unable to Authenticate with Elasticsearch: 401 Unauthorized Error
I am running JanusGraph and Elasticsearch as separate containers in a Kubernetes cluster. Elasticsearch is configured with authentication enabled (xpack.security.enabled: true), and I have provided ...
0
votes
1
answer
1k
views
google.genai.Client suddenly hits 401 error using Gemini API Key
client = genai.Client(api_key=os.environ.get("GEMINI_API_KEY"))
model_id = "gemini-2.0-flash"
google_search_tool = Tool(
google_search = GoogleSearch()
)
...
0
votes
0
answers
25
views
Mechanize not getting a site
while using Mechanize gem in rails and fetching the site https://www.reuters.com/ its giving -> Failed to fetch page:
401 => Net::HTTPUnauthorized for https://www.reuters.com/ -- WWW-...
1
vote
0
answers
169
views
IBKR OAuth 1.0a - /request_token returns 401: invalid consumer
I'm trying to integrate Interactive Brokers (IBKR) OAuth 1.0a into my application. Currently, I'm stuck at the request token step (/oauth/request_token), where I receive a 401 error: invalid consumer.
...
0
votes
0
answers
69
views
API token authentication failure in streamlabs
I've been trying to send a post request to https://streamlabs.com/api/v2.0/donations with the access token from user settings (note that i didnt register my app but i am just going to use it for my ...
0
votes
0
answers
26
views
Handling JWT expiration or unauthorized access
I'm having an issue where, when a user tries to access an authorized route, I want to send a 401 status code and a JSON response describing the error to the client so I can handle it. The problem is ...