0

我不知道这是否是问这个问题的正确地方,但我希望在这里找到方向。

我有一台智能电视,我喜欢使用 SSIPTV 应用观看来自我的国家的电视。我找到了一个流本地频道的 android 应用程序,所以我用 android studio 检查了请求以找到流链接。其中一些是免费的,但另一些是通过云端提供的。问题是我无法添加云端所需的标头来授权请求​​。

例如:当我尝试在没有“User-Agent”标头的情况下发出请求时,响应是这样的:

Status Code: 403 Forbidden
Connection: keep-alive
Content-Length: 560
Content-Type: text/html
Date: Tue, 01 Jan 2019 20:57:50 GMT
Server: CloudFront
Via: 1.1 f7e7b00c5c66a4e43041ba24c378d07a.cloudfront.net (CloudFront)
X-Amz-Cf-Id: uZQAVTrQzHsQe2vGyHxY1OYfjHCL-Nz7gCTG-koHcgr1A5HG7fGGOg==
X-Cache: Error from cloudfront


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<HTML>
    <HEAD>
        <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
        <TITLE>ERROR: The request could not be satisfied</TITLE>
    </HEAD>
    <BODY>
        <H1>403 ERROR</H1>
        <H2>The request could not be satisfied.</H2>
        <HR noshade size="1px">
Request blocked.


        <BR clear="all">
        <HR noshade size="1px">
        <PRE>
Generated by cloudfront (CloudFront)
Request ID: TZztsUjltHpEhx54wplzupvLmZwjCRPtAvTcbdJ8DL16b1k9-_XwZw==
</PRE>
        <ADDRESS></ADDRESS>
    </BODY>
</HTML>

但是,如果我将“User-Agent”标头设置为“iPhone”值,这就是响应:在此处输入代码

Status Code: 200 OK
Accept-Ranges: bytes
Access-Control-Allow-Credentials: true
Access-Control-Allow-Headers: Content-Type, User-Agent, If-Modified-Since, Cache-Control, Range
Access-Control-Allow-Methods: OPTIONS, GET, POST, HEAD
Access-Control-Allow-Origin: *
Access-Control-Expose-Headers: Date, Server, Content-Type, Content-Length
Cache-Control: max-age=1
Connection: keep-alive
Content-Length: 366
Content-Type: application/vnd.apple.mpegurl
Date: Tue, 01 Jan 2019 20:51:32 GMT
Server: WowzaStreamingEngine/4.7.6
Via: 1.1 880eb84cefca849ee159a7c4d89c31ea.cloudfront.net (CloudFront)
X-Amz-Cf-Id: pogc8_OBsN2-QeGj_1q8K_vyxrQH-G8a2JmWqSkVt9x57NlbKfDSdQ==
X-Cache: Hit from cloudfront

那么,有没有一种方法可以设置代理来添加请求,然后在我的电视应用程序中获取内容?

4

1 回答 1

0

如果您可以将您的 TV 应用程序配置为使用 HTTP 代理,那么这很简单,例如在 squid 中,这在此处记录:http ://www.squid-cache.org/Doc/config/request_header_add/

request_header_add User-Agent "iPhone"
于 2021-01-04T18:24:50.070 回答