We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi guys,
I'm not a github guy (not a Microsoft fan) but made an account here to ask a question:
How to deal with ampersand?
I need to go from this:
https://signin.ebay.com/ws/eBayISAPI.dll?SignIn&ru=https%3A%2F%2Fwww.ebay.com%2F
(where the text after the "SignIn" can and does change)
to this:
https://signin.ebay.com/ws/eBayISAPI.dll
Currently, I used "SignIn*@signin.ebay.com", but it has unintended result:
https://signin.ebay.com/ws/eBayISAPI.dll?ru=https%3A%2F%2Fwww.ebay.com%2F
Looks like it "breaks" and stops when it reaches the ampersand in the URL.
How can I achieve what I need?
Thanks in advance
The text was updated successfully, but these errors were encountered:
SignIn is one parameter, and ru is a second parameter. What you want is [email protected], [email protected].
SignIn
ru
[email protected], [email protected]
Sorry, something went wrong.
No branches or pull requests
Hi guys,
I'm not a github guy (not a Microsoft fan) but made an account here to ask a question:
How to deal with ampersand?
I need to go from this:
https://signin.ebay.com/ws/eBayISAPI.dll?SignIn&ru=https%3A%2F%2Fwww.ebay.com%2F
(where the text after the "SignIn" can and does change)
to this:
https://signin.ebay.com/ws/eBayISAPI.dll
Currently, I used "SignIn*@signin.ebay.com", but it has unintended result:
https://signin.ebay.com/ws/eBayISAPI.dll?ru=https%3A%2F%2Fwww.ebay.com%2F
Looks like it "breaks" and stops when it reaches the ampersand in the URL.
How can I achieve what I need?
Thanks in advance
The text was updated successfully, but these errors were encountered: