Skip to content

Commit b6b20ca

Browse files
committed
nuevos tokens
1 parent 6cec916 commit b6b20ca

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

source/Net/Request.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ string Net::Request(string method, string url) {
4343
string response;
4444
if(curl) {
4545
curl_easy_setopt(curl, CURLOPT_URL, url.c_str());
46-
// curl_easy_setopt(curl, CURLOPT_USERPWD, "x8zrP2ojcgffRfL:");
46+
// curl_easy_setopt(curl, CURLOPT_USERPWD, "CXboS8mjRWZneBS:");
4747
curl_easy_setopt(curl, CURLOPT_CUSTOMREQUEST, method);
4848
curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
4949
curl_easy_setopt(curl, CURLOPT_RESOLVE, hosts);
@@ -67,7 +67,7 @@ bool Net::Download(string url, string filepath) {
6767
if (curl) {
6868
fp = fopen(filepath.c_str(),"wb");
6969
curl_easy_setopt(curl, CURLOPT_URL, url.c_str());
70-
curl_easy_setopt(curl, CURLOPT_USERPWD, "x8zrP2ojcgffRfL:");
70+
curl_easy_setopt(curl, CURLOPT_USERPWD, "CXboS8mjRWZneBS:");
7171
curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
7272
curl_easy_setopt(curl, CURLOPT_RESOLVE, hosts);
7373
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0L);
@@ -94,7 +94,7 @@ string Net::Request1(string method, string url) {
9494
string response;
9595
if(curl) {
9696
curl_easy_setopt(curl, CURLOPT_URL, url.c_str());
97-
curl_easy_setopt(curl, CURLOPT_USERPWD, "KkkmdYerkJXpSJB:");
97+
curl_easy_setopt(curl, CURLOPT_USERPWD, "NA9CsKnyApss5Lr:");
9898
curl_easy_setopt(curl, CURLOPT_CUSTOMREQUEST, method);
9999
curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
100100
curl_easy_setopt(curl, CURLOPT_RESOLVE, hosts);
@@ -118,7 +118,7 @@ bool Net::Downloader1(string url, string filepath) {
118118
if (curl) {
119119
fp = fopen(filepath.c_str(),"wb");
120120
curl_easy_setopt(curl, CURLOPT_URL, url.c_str());
121-
curl_easy_setopt(curl, CURLOPT_USERPWD, "KkkmdYerkJXpSJB:");
121+
curl_easy_setopt(curl, CURLOPT_USERPWD, "NA9CsKnyApss5Lr:");
122122
curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
123123
curl_easy_setopt(curl, CURLOPT_RESOLVE, hosts);
124124
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0L);
@@ -144,7 +144,7 @@ string Net::Request2(string method, string url) {
144144
string response;
145145
if(curl) {
146146
curl_easy_setopt(curl, CURLOPT_URL, url.c_str());
147-
curl_easy_setopt(curl, CURLOPT_USERPWD, "BscS3mSGjbkMnXn:");
147+
curl_easy_setopt(curl, CURLOPT_USERPWD, "YAZi5Fe2FEEopGr:");
148148
curl_easy_setopt(curl, CURLOPT_CUSTOMREQUEST, method);
149149
curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
150150
curl_easy_setopt(curl, CURLOPT_RESOLVE, hosts);
@@ -169,7 +169,7 @@ bool Net::Downloader2(string url, string filepath) {
169169
if (curl) {
170170
fp = fopen(filepath.c_str(),"wb");
171171
curl_easy_setopt(curl, CURLOPT_URL, url.c_str());
172-
curl_easy_setopt(curl, CURLOPT_USERPWD, "BscS3mSGjbkMnXn:");
172+
curl_easy_setopt(curl, CURLOPT_USERPWD, "YAZi5Fe2FEEopGr:");
173173
curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
174174
curl_easy_setopt(curl, CURLOPT_RESOLVE, hosts);
175175
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0L);

0 commit comments

Comments
 (0)