Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add cookie support between redirects #182

Open
jonatan-ivanov opened this issue May 13, 2023 · 0 comments
Open

Add cookie support between redirects #182

jonatan-ivanov opened this issue May 13, 2023 · 0 comments

Comments

@jonatan-ivanov
Copy link

jonatan-ivanov commented May 13, 2023

There are sites that are sending a redirect with a cookie if the request does not have one, for examlpe Twitter started doing this, so those links are now marked as broken even if they are not:

echo 'https://twitter.com' |  markdown-link-check

You can also verify this with curl, this should fail:

curl --verbose --location 'https://twitter.com'

But if you enable cookies, it works:

curl --verbose --location --cookie --junk-session-cookies 'https://twitter.com'

Workaround: sending some static cookies in the headers but having support for this would be nice, since sites can change the cookies they mandate any time. See: jonatan-ivanov/develotters-blog@727cfd5

peetzweg added a commit to use-ink/ink-docs that referenced this issue Jan 5, 2024
* disable check of dead playground link to fix CI

* explicitly use https instead of http

* replace twitter.com with x.com

* Revert "replace twitter.com with x.com"

This reverts commit 9428c91.

* Revert "explicitly use https instead of http"

This reverts commit 81f26c2.

* enable quiet mode as it's otherwise hard to find broken links in all the output logs

* ignore twitter/x links as it's broken see gaurav-nelson/github-action-markdown-link-check#182
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant