Reverse proxy https to http #3
Reference in New Issue
Block a user
Delete Branch "reverse-proxy-https-to-http"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Removed self signed cert from container
smoke test : use postman to create order and to read orders
Get orders (there is one order right now)
GET https://next.wiaas.saburly.com/api/wp-json/wc/v2/orders
Authorization : Basic Auth, username = Client key, password = client secret
Create order
POST https://next.wiaas.saburly.com/api/wp-json/wc/v2/orders
Same authorization
Body content :
{
"payment_method": "bacs",
"payment_method_title": "Direct Bank Transfer",
"set_paid": true,
"billing": {
"first_name": "John",
"last_name": "Doe",
"address_1": "969 Market",
"address_2": "",
"city": "San Francisco",
"state": "CA",
"postcode": "94103",
"country": "US",
"email": "john.doe@example.com",
"phone": "(555) 555-5555"
},
"shipping": {
"first_name": "John",
"last_name": "Doe",
"address_1": "969 Market",
"address_2": "",
"city": "San Francisco",
"state": "CA",
"postcode": "94103",
"country": "US"
},
"line_items": [
{
"product_id": 93,
"quantity": 2
},
{
"product_id": 22,
"variation_id": 23,
"quantity": 1
}
]
}
changed the description
merged
mentioned in commit
03963d6056