| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- @lat=56.638372
- @lon=47.892991
- @token=d4c9eea0d00fb43230b479793d6aa78f
- ### Запрос текущей погоды
- GET https://api.openweathermap.org/data/2.5/weather?lat={{lat}}&lon={{lon}}&appid={{token}}&lang=ru&units=metric
- ### Запрос погоды за 5 дней https://openweathermap.org/forecast5
- GET https://api.openweathermap.org/data/2.5/forecast?q=Йошкар-Ола&appid={{token}}&lang=ru&units=metric
- ### Запрос погоды за 5 дней https://openweathermap.org/forecast5
- GET https://api.openweathermap.org/data/2.5/forecast?lat={{lat}}&lon={{lon}}&appid={{token}}&lang=ru&units=metric&mode=xml
- ###
- GET http://localhost:8080/
- Authorization: Basic admin:password
- ###
- GET http://localhost:8080/product/150
- ###
- POST http://localhost:8080/product
- Content-Type: application/json
- {
- "Title": "post title",
- "ProductTypeId": 141,
- "ArticleNumber": "1234",
- "MinCostForAgent": 100.50
- }
- ###
- GET http://localhost:8080/test/1/2?pageNum=10
- ###
- PUT http://localhost:8080/product/1227
- Content-Type: application/json
- {
- "Title": "post title",
- "ProductTypeId": 141,
- "ArticleNumber": "1234",
- "MinCostForAgent": 100.50
- }
- ###
- DELETE http://localhost:8080/product/232
|