Objective-C / Shopify / Hack Authentication
Back to Collection Items
#import <CkoHttp.h>
#import <CkoHttpResponse.h>
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkoHttp *http = [[CkoHttp alloc] init];
BOOL success;
[http SetRequestHeader: @"Content" value: @"<>"];
CkoHttpResponse *resp = [http QuickRequest: @"POST" url: @"httpsDefaultParameterValue:DefaultParameterValue@DefaultParameterValue.myshopify.com/account/login"];
if (http.LastMethodSuccess == NO) {
NSLog(@"%@",http.LastErrorText);
return;
}
NSLog(@"%d",[resp.StatusCode intValue]);
NSLog(@"%@",resp.BodyStr);
Curl Command
curl -X POST
-H "Content: <>"
httpsDefaultParameterValue:DefaultParameterValue@DefaultParameterValue.myshopify.com/account/login
Postman Collection Item JSON
{
"name": "Hack Authentication",
"request": {
"method": "POST",
"header": [
{
"key": "Content",
"value": "<>"
}
],
"url": {
"raw": "{{baseUrl}}/account/login",
"host": [
"{{baseUrl}}"
],
"path": [
"account",
"login"
]
},
"description": "Hack authentication."
},
"response": [
]
}