http tag

72 questions


1 answers
76 views
0
What is c++ L"string"?

json::value obj;obj[Ltitle] = json::value::string(U(count1));obj[Lnum] = json::value::number(1);wcout << obj << endl;// Create http post requesthttp_client client(U(http://localhost:3000/c...

2 years ago

1 answers
133 views
0
base64 encoding

I heard that base64 encoding format is mainly used in http protocol, so why?

2 years ago

1 answers
55 views
0
Sending XML over HTTP POST (SOAP) on Android

I want to call the web service through Android. XML must be POSTed to a specific URL over HTTP. I uploaded the POST request part, but I don't know how to include and add XML data.public void postData(...

2 years ago

1 answers
80 views
0
What's the reason for changing to 404 error? 'get_object_or_404'

I'm studying janggu.Everyone in the lecture and on the internetTeach them to stop DoesNotExist using 'get_object_or_404'.Both are errors, but I wonder why you change 500 errors (server errors) to 404 ...

2 years ago

1 answers
121 views
0
I'd like to post with Python requests.

I'd like to access my homepage through Python requests.import requestsURL = 'http://cyphers.herokuapp.com'payload = { 'myName': 'Good Adult',}session = requests.session()r = requests.post(URL, data=pa...

2 years ago

1 answers
92 views
0
SIP implementation is difficult.crying

I also looked at Naver SIP-related open-source projects, and Mobile SIP also opened SipServlet, a basic Java API, at Oracle Homepage, but I don't understand it clearly. Of course, I think it is imposs...

2 years ago

1 answers
99 views
0
I'd like to change the processing from several requests modules to aiohttp code.

position_count = [] for matchid in matchid_list: url = https://api.***.com/matches/ + matchid + ?apikey=*** temp_dict = requests.get(url).json() try: for i in range(0, 10): if user == temp_dict[...

2 years ago

2 answers
87 views
0
I have a question about json object communication.

Current server:in Apache php mariadb environmentIt creates a json object and implements the form that it receives from Android.Common examples show that the data in db is generated by php as a functio...

2 years ago

2 answers
88 views
0
receive php$_POSTArray data

value1=2012251&value1=2012254&value2=531&value2=544I thought that if you attach the data in the above way and throw it, it will overlap and you can get it as an array, but when I actually ...

2 years ago

1 answers
65 views
0
I would like to ask you a question about the problem that 403 forbiden appears when importing data into python requests

First of all, the pages you want to scrap/parse are as follows.https://www.influenster.com/reviews/farmacy-honeymoon-glow-aha-resurfacing-night-serum-with-echinacea-greenenvytmGenerally, I approached ...

2 years ago
« - 7 - »

© 2024 OneMinuteCode. All rights reserved.