“Отправить запрос сообщения” Ответ

Отправить запрос сообщения

const createPostRequest = async () => {
	try{
		const { data } = await axios.post(url, body_data, {
		   headers: {
	    	 'Authorization': `Basic ${token}`
		   },
		})
    
	    console.log(data)
	} catch (error) {
		console.log(error)
	}
}

createPostRequest();
Inquisitive Iguana

Запросить сообщение

import requests
import logging

API_KEY = "xxxxxxxxxxxxxxxxxxxxxxx"
API_ENDPOINT = "https://sample.endpoint.php"
try:
       # your source data eg format
       source_data = {"key":list(values)}
  
       # header to be sent to api
       headers = {"api-key" : API_KEY}
  
       # sending post request and saving response as response object
       r = requests.post(url = API_ENDPOINT, json=source_data, headers=headers)
  
       logging.info("Data push was completed with status code :"+str(r.status_code))
except requests.exceptions.RequestException as e:
       logging.info("error occured : "+ str(e) +"\nstatus code:"+str(r.status_code))
Shantam Vijayputra

Ответы похожие на “Отправить запрос сообщения”

Вопросы похожие на “Отправить запрос сообщения”

Больше похожих ответов на “Отправить запрос сообщения” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования