Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
392 views

the request returns a 302 with a URL in the Location header. The browser automatically makes a GET request to that URL, but I need to redirect the user to the page with that URL. const res = axios.get(...
chupapee's user avatar
  • 551
0 votes
0 answers
44 views

When I perform axios calls to server it always returns 302. Here is axios configuration: const api = axios.create({ baseURL: "http://localhost:8080", }); api.interceptors.request.use( (...
ivans's user avatar
  • 11
0 votes
1 answer
66 views

row body is printed in Postman as TradeSha=https%3A%2F%2Fenv.example.com%2Fpayments%2FRedirectHandler%2F1002%3FtId%3D100201195%26token%3D9c8dce5b-ddbb-4190-9cbe-3da45fad50d2 Location header is printed ...
lionheart's user avatar
  • 436
0 votes
0 answers
305 views

I am trying to track how my POST request is being handled by a remote API. On Postman, I see that on making a POST request to /enter, I ultimately get a 200 response (after all redirections). Tracking ...
akshit mishra's user avatar
0 votes
0 answers
48 views

I am making a POST request from Node.js backend to an external website (mirror.codeforces.com). In both Postman and Node.js axios response, I receive status code 302 (I have set maxRedirects = 0), but ...
akshit mishra's user avatar
1 vote
0 answers
394 views

I have client A (https://something.localtest.me:3002) making a request to backend B (https://something.localtest.me:8000/api/some_path). Backend B responds with a 302 redirecting to client C (https://...
user3371034's user avatar
0 votes
0 answers
35 views

I have the following problem: Request method 'POST' not supported I'm doing it in java "Sprint Boot" and I know that the error is due to the security configuration: String urlMercadoPago = &...
Richard Figueroa's user avatar
0 votes
1 answer
114 views

I have a Laravel 10 project (with Breeze) using Sanctum for authentication. I have served my application and successfully registered myself as a user. But whenever I try to log in, I am immediately ...
Johan's user avatar
  • 66
0 votes
0 answers
41 views

I have hosted asp.net app in godaddy. Whenever any hyperlink is clicked, requested page is not loaded but responded with 302 found error status code and automatically user is logged out and ...
Kavya's user avatar
  • 1
1 vote
1 answer
348 views

I'm am trying to set up a redirect from HTTP to HTTPS for a client site. I added the following code to the .htaccess file: RewriteEngine On RewriteCond %{HTTPS} !on RewriteRule (.*) https://%{...
Jillian Hoenig's user avatar
0 votes
0 answers
61 views

I forgot to delete 302 flag in the following directive in htaccess, and cannot use get on the website anymore although I deleted it. RewriteCond %{QUERY_STRING} . RewriteRule (.*) /$1? [R=302,L] ...
KenAdamsTR's user avatar
0 votes
0 answers
408 views

We have SPA with the IDS 4 and its does not redirect to the login screen post token expires. Getting below response as blank screen as it does not redirecting to identity server urls. enter image ...
vishal's user avatar
  • 1
0 votes
1 answer
202 views

I have written an API URL on questions model for retrieving a 1st 10 tags, its a get call. When I call it from the react app, i am getting 302 to that api and redirects to http://localhost:8093/login/?...
Joe Joseph's user avatar
0 votes
1 answer
229 views

I am trying to write a batch script which will alow users to easily fill in a police form about illegal fireworks. It takes some personal information about the user and uses this in combination with ...
Jurian Baas's user avatar
1 vote
1 answer
600 views

I have an Angular project in which I use JSON files (path: src/assets/i18n)to translate the content into different languages. I put my project on Gitlab Pages, but I get the following error: Access ...
Lorenzo's user avatar
  • 197
0 votes
0 answers
46 views

I'm making a simple web app that sends, deletes and edits data to a MariaDB database and I'm using Flask as a framework. Currently, the app.py script is fully working except for the editing API, ...
Elyayoveloz's user avatar
0 votes
1 answer
39 views

When I iterate over a list, sending a get request with every element, block in rescue executes for the first iteration only. Here's the code: def download_doc(gem_id) url = @base_url + ...
boberczus's user avatar
0 votes
1 answer
93 views

i have a thousand youtube videos to review, some of which do not work. i'm trying to find a way to check these faster. I came across this script, which I thought worked perfectly. however, I'm ...
3ll3's user avatar
  • 1
0 votes
0 answers
136 views

I am trying to write a test for a URL /rdrct which redirects to another URL, say /test on the same host. On the application, the redirect works fine and I see a HTTP 302 in the Network Inspector but ...
p0tta's user avatar
  • 1,691
1 vote
1 answer
2k views

I have the below code which am using to get the response header location. let callAuthorize = async() => { try { const authorizeResponse = await fetch(requesturl, {redirect: "...
santhazh's user avatar
0 votes
1 answer
219 views

I've been stuck on this problem for a few days now, please help! my problem is the following: I'm trying to do an Rspec test in Rails in a posts controller, but when I get to the update, this error ...
Marcos Eduardo Santos Henke's user avatar
0 votes
1 answer
653 views

I am trying to retrieve the list of jobs and transformations using the carte API REST. However I am not able. From code, when executing http://...../kettle/status I get a 200 code, but If I try to ...
Alejandro Diego's user avatar
0 votes
0 answers
307 views

I have one web API I essentially copied from another. Both have app.UseHttpsRedirection() as well as app.UseHSTS() in their Program.cs. Both have Swagger redirect working (this is a local internal ...
Mike's user avatar
  • 1,122
0 votes
1 answer
860 views

I have two request in 1st request is giving me 307 redirect along with location header. I pull Location header from response headers of 1st request and then passed it to second request. Now 2nd ...
Harish Dhande's user avatar
-1 votes
1 answer
2k views

Can I make a interceptor to catch 302 response in angular, before automatic redirect? How to intercept url redirect in angular response 302
Roberto Passareti Filho's user avatar
1 vote
0 answers
254 views

i have backend server in elastic beanstalk with rds in private subnet, so to access backend i have created http api gateway but problem is when i click on http api gateway endpoint i got error too ...
saad jaha kayani's user avatar
0 votes
0 answers
652 views

We have migrated a PrestaShop(PS) v.1.7.8.7 from an Apache server to a LiteSpeed server which includes the LiteSpeed cache module for PS and crawler enabled. CloudFlare(CF) has always been in play ...
PabloDK's user avatar
  • 2,579
0 votes
0 answers
252 views

I am creating an Angular app, where I need to download a huge file from S3. Since AWS doesn't allow more than 10MB downloads via APIG, I am using a pre-signed URL for download. We need to protect this ...
Saurabh Tiwari's user avatar
1 vote
0 answers
94 views

I'm trying to implement social share buttons in my SPA that's served over Azure CDN. In order overcome the problem of bots not executing javascript on my page I'm redirecting these (via 302) to my ...
Edmond Tamas's user avatar
  • 3,325
0 votes
0 answers
89 views

I am trying to download pdf file. I use request. Here is the code. url = 'https://unistream.ru/upload/iblock/230/230283e15180d590198137eba4e70644.PDF' r = requests.get(url, allow_redirects=False) ...
piolvi's user avatar
  • 25
4 votes
1 answer
2k views

I have a POST request which returns a 302 when successful. I need to get the location response header which holds the url I'll need to redirect to. Currently I have this: accountLogin: builder....
Aaron's user avatar
  • 110
1 vote
0 answers
68 views

I have a pretty base Laravel 9 install. I wrote a custom package that is installed that provides a route and a controller action. The controller action is designed to Login a user via ajax, and return ...
TJ Sherrill's user avatar
  • 2,645
0 votes
1 answer
429 views

I am trying to download a file through code and it is working if the file is found. But if the Link returns a 302 code, I am getting a connection timeout through code. It is working fine in browser. ...
VatsalSura's user avatar
-1 votes
1 answer
4k views

I am trying to fetch and API that has worked in the past for me, but now is returning: [Error] Preflight response is not successful. Status code: 302 [Error] Fetch API cannot load http://api-im-trying-...
Belen's user avatar
  • 1
0 votes
1 answer
202 views

Screenshot It's an internal Django web app is hosted on a Windows Server 2008 with IIS 7.5, with Active Directory SSO enabled. Some links in the app response with a 302. For example, if the request ...
Nic-AF's user avatar
  • 1
0 votes
1 answer
330 views

I’m trying to log in to wordpress dashboard but it redirects back to login page causing 302 error. I’ve tried all solutions suggested in the internet including clearing caches, deactivating plugins ...
Adriana's user avatar
0 votes
1 answer
1k views

I want to fetch a page HTML but every time I try to fetch either for HTTP or HTTPS I get a response either error 301 or 302. Already tried add a proxy http and socks5 neither helped axios("https:/...
CursedMun's user avatar
1 vote
1 answer
196 views

I have a CSV of ~2000 URLs that, when queried, do a 301 or 302 redirect, and I'm trying to figure out if OpenRefine is able to export to a new column the destination url that it retrieves HTML from ...
pmusser's user avatar
  • 125
0 votes
0 answers
526 views

I am sometimes encountering an http error code 302 when using cURL in PHP. For instance with the following code, I get a 302 "Access denied", "You don't have permission to access the ...
Tristan's user avatar
  • 1,695
0 votes
0 answers
366 views

I am making a REST Api call in my Java application : RestTemplate restTemplateGES = new RestTemplate(); HttpHeaders headers = new HttpHeaders(); String url = "http://myurl/common/api/...
vs777's user avatar
  • 644
0 votes
0 answers
262 views

I am working on a MVC application in which when have an option to request password reset email. When we got the email with the link, that link will redirect to the welcome page where we will enter ...
Santhosh kumar Vadlamani's user avatar
1 vote
1 answer
533 views

I have issue with tomcat 9.0.50. I have a basic Springboot application to deploy and all my post requests are actually redirected to GET request. here is my Main class: @SpringBootApplication public ...
davidvera's user avatar
  • 1,507
5 votes
0 answers
3k views

I'm trying to authenticate users of my streamlit app using OAuth 2 as described in this post (article repo here if you can't access post). That implementation provides users a link to click that ...
hamdog's user avatar
  • 1,191
0 votes
0 answers
813 views

We have a system that 302 redirects users to different other websites based on several criteria and we have big-query analytics & grafana that help us visualize the business. The system is getting ...
atlanteh's user avatar
  • 5,825
4 votes
2 answers
1k views

I'am developping a Vuejs project (vue 2.6.11) and I want to build an android app from it. For that, I'am using capacitor : "@capacitor/android": "^3.4.0" and "@capacitor/core&...
Jop297's user avatar
  • 119
0 votes
1 answer
168 views

The HTTParty methods are like HTTParty.XXX(urlGoesHere, and Args Here) I'm doing the following: params = {:UserName => "uname", :Password => "pwd"} cookie_hash = HTTParty::...
sofs1's user avatar
  • 4,246
0 votes
2 answers
3k views

I am adding a http interceptor in an existing Angular 11 app. We have 2 resquests onload, they work as expected but when I add the interceptor with no logic, just return the same request, one request ...
arturorv00's user avatar
1 vote
1 answer
140 views

Developed a site whose domain was pointing to an external host. On finishing the development I pointed the nameservers back to where the domain is hosted. Everything changed over smoothly, I did not ...
mwaji sikamo's user avatar
0 votes
1 answer
1k views

I Have attached 2 images. First Image is the very fist time when I load the website where the service-worker is registered. There are 2 arrow mark that shows 302 found and sets the cookies of session ...
Shrihari's user avatar
  • 123
1 vote
1 answer
465 views

I've been trying to log in to this website using my credentials in order to scrape my profile name using google apps script. The status code is 200 and I can see that the script is able to get cookies....
robots.txt's user avatar

1
2 3 4 5
13