|
@@ -22,7 +22,7 @@ class AskForInfo:
|
|
|
请求下载外部视频
|
|
|
:return:
|
|
|
"""
|
|
|
- url = "http://{}/title_to_search".format(self.base_url)
|
|
|
+ url = "{}/title_to_search".format(self.base_url)
|
|
|
body = {
|
|
|
"title": self.params["title"],
|
|
|
"ghId": self.params["ghId"]
|
|
@@ -34,7 +34,7 @@ class AskForInfo:
|
|
|
"""
|
|
|
:return:
|
|
|
"""
|
|
|
- url = "http://{}/out_videos".format(self.base_url)
|
|
|
+ url = "{}/out_videos".format(self.base_url)
|
|
|
body = {
|
|
|
"traceId": trace_id
|
|
|
}
|
|
@@ -49,7 +49,7 @@ class AskForInfo:
|
|
|
"""
|
|
|
traceId = res_obj["trace_id"]
|
|
|
video_list = res_obj["video_list"]
|
|
|
- url = "http://{}/find_video".format(self.base_url)
|
|
|
+ url = "{}/find_video".format(self.base_url)
|
|
|
body = {
|
|
|
"accountName": self.params['accountName'],
|
|
|
"content": self.params['content'],
|