websave error when queryvalue contains "/"

조회 수: 1 (최근 30일)
Jeffrey Kern
Jeffrey Kern 2017년 5월 18일
답변: Jeffrey Kern 2017년 5월 23일
For the following url: https://query1.finance.yahoo.com/v7/finance/download/%5EGSPC?period1=1492522935&period2=1495114935&interval=1d&events=history&crumb=F49sxISRiT/ it looks like the last character is converted to %2F, and the website doesn't accept this. Can you help?
  댓글 수: 1
Jan
Jan 2017년 5월 18일
No, it does not look like the last character is converted. All we see is that the last charater is a "/". Why do you assume that a conversion happens and most of all for which command do you observe this? Why do you think, that the website reject this? In other words: Please post your code and explain, what happens. Then posting an answer is not based on guessing.

댓글을 달려면 로그인하십시오.

채택된 답변

Guillaume
Guillaume 2017년 5월 18일
편집: Guillaume 2017년 5월 18일
it looks like / is converted to %2F
And that would be entirely correct and the right thing to do. The encoding rule is very specific. / is a reserved character and must be percent encoded when used as anything else than a separator.
and the website doesn't accept this
I doubt that yahoo's website is faulty, so I'm certain that it would accept a %2F in the query string. In fact, I'm certain it would reject a URI that used / in the query string instead. Are you sure your problem is not because of something else? What is the exact error you get?

추가 답변 (1개)

Jeffrey Kern
Jeffrey Kern 2017년 5월 23일
The command was: websave('temp.csv','https://query1.finance.yahoo.com/v7/finance/download/%5EGSPC?period1=1492953255&period2=1495545255&interval=1d&events=history&crumb=F49sxISRiT/')
The resulting error was: "Error using websave (line 103) The server returned the message: "Request denied" for URL, 'https://query1.finance.yahoo.com/v7/finance/download/%5EGSPC?period1=1492953255&period2=1495545255&interval=1d&events=history&crumb=F49sxISRiT/' (with HTTP response code 999)."
However, if I enter the url in my browser with "%2F" instead of "/", I get the message "invalid cookie". Unfortunately, "crumb" changes frequently (today, it doesn't contain a slash) so this is difficult to repeat.

카테고리

Help CenterFile Exchange에서 String Parsing에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by