This commit is contained in:
2025-01-20 16:23:23 +08:00
parent 33ac157f71
commit 46187e7795
66 changed files with 5024 additions and 2299 deletions

View File

@@ -63,7 +63,7 @@
request.HTTPMethod = @"PUT";
[request setValue:@"application/json" forHTTPHeaderField:@"Content-Type"];
NSDictionary *parmas = @{@"userId":[NSNumber numberWithInteger:[TESTUserID integerValue]]};
NSDictionary *parmas = @{@"userId":[NSNumber numberWithInteger:[pokiesUserID integerValue]]};
NSData *jsonData = [NSJSONSerialization dataWithJSONObject:parmas options:NSJSONWritingPrettyPrinted error:nil];
request.HTTPBody = jsonData;