401 Unauthorized
See original GitHub issueHi! I am using React with Axios to fetch Medium articles. When I am using cors-anywhere, it do not works.
axios.get('https://cors-anywhere.herokuapp.com/https://medium.com/feed/@yunisdev')
.then(response => {
parseString(response.data, (err, res) => {
console.log(res)
})
})
.catch(err => {
console.log(err)
})
I have a code like this. It returns an error : GET https://cors-anywhere.herokuapp.com/https://medium.com/feed/@yunisdev 401 (Unauthorized)
Issue Analytics
- State:
- Created 3 years ago
- Comments:5 (1 by maintainers)
Top Results From Across the Web
How to Quickly Fix the 401 Unauthorized Error (5 Methods)
The 401 (Unauthorized) status code indicates that the request has not been applied because it lacks valid authentication credentials for the ...
Read more >401 Error: 5 Ways to Troubleshoot and Fix It
The 401 Unauthorized error indicates that the server's request was not verified because it lacks valid authentication credentials for the target ...
Read more >How to Fix a 401 Unauthorized Error?
The 401 Unauthorized Error is an HTTP status code error that represented the request sent by the client to the server that lacks...
Read more >How to Fix a 401 Unauthorized Error
The 401 Unauthorized error is an HTTP status code that means the page you were trying to access cannot be loaded until you...
Read more >What is a 401 Error and How Do You Fix It?
A 401 Authorization Required error means you can try accessing the resource again using the correct credentials. In other words, it's often a ......
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@kthy If you saw 403, try again - see the issue (including latest comment from me - I have just updated/restarted the server).
Note: My server does not send the 401 response header. If you see 401, then that’s the actual response from the URL that you’re requesting.
Right, but I thought it would be usable after doing the challenge?