How do I get the final URL from a redirect link? (like requests.get from python)?
106 ビュー (過去 30 日間)
表示 古いコメント
I'm using a SERP API to return Google Shopping links, and sometimes it returns Google aclk redirect links. In Python, the requests.get command and accessing the .url field gives me what I'm looking for. I tried using python within Matlab and it works with a single url, but when I try to use within a for loop it always freezes.
2 件のコメント
Hank Helmers
2022 年 4 月 6 日
What is the Request.get method equivalent in matlab that you got to work?
回答 (1 件)
Mohammad Sami
2022 年 4 月 7 日
You can use the matlab.net.http interface to follow the redirects.
request = matlab.net.http.RequestMessage;
uri = matlab.net.URI('https://goo.gl/maps/co8U2mMv8zFweDzN8');
[response,completedrequest,history] = send(request,uri);
finaluri = history(end).URI;
disp(finaluri);
0 件のコメント
参考
カテゴリ
Find more on MATLAB Compiler SDK in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!