import requests
import time
api_access_token = 'f493574cf951238e595050c000e35a76e'
#не переживайте, я изменил апи при копировании сюда
# Оплата мобильного телефона
def send_mobile(api_access_token, prv_id, to_account, comment, sum_pay):
s = requests.Session()
s.headers['Accept'] = 'application/json'
s.headers['Content-Type'] = 'application/json'
s.headers['authorization'] = 'Bearer ' + api_access_token
postjson = {"id": "", "sum": {"amount": "", "currency": "643"},
"paymentMethod": {"type": "Account", "accountId": "643"}, "comment": "", "fields": {"account": ""}}
postjson['id'] = str(int(time.time() * 1000))
postjson['sum']['amount'] = sum_pay
postjson['fields']['account'] = to_account
postjson['comment'] = comment
res = s.post('https://edge.qiwi.com/sinap/api/v2/terms/' + prv_id + '/payments', json=postjson)
return res.json()
send_mobile(api_access_token, '1', '9187289907', '123', '1')
print("000")
namespace DataExt
{
public class MLandl
{
public class MainLand
{
public int id; //id материка
public int id_country; //id страны
public string name; //название страны
public string data_osn; //дата основания
public string data_ras; //дата распада
}
public static List<MainLand> GetCountryList(string id)
{
List<MainLand> ResultList = new List<MainLand>();
//здесь надо заполнить лист. То есть записать id страны, название
return (ResultList);
//вовзрат списка стран (лист классов)
//запрос в БД
}
}
}