mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
20 lines
686 B
Objective-C
20 lines
686 B
Objective-C
//
|
|
// RobloxXSRFRequest.h
|
|
// RobloxMobile
|
|
//
|
|
// Created by Ariel Lichtin on 6/25/14.
|
|
// Copyright (c) 2014 ROBLOX. All rights reserved.
|
|
//
|
|
|
|
#import "AFHTTPRequestOperationManager.h"
|
|
|
|
@interface RobloxXSRFRequest : AFHTTPRequestOperationManager
|
|
|
|
/* XSRF Protection: Post a message that modifies the state of the server using the safety ROBLOX token */
|
|
- (AFHTTPRequestOperation *)XSRFPOST:(NSString *)URLString
|
|
parameters:(id)parameters
|
|
success:(void (^)(AFHTTPRequestOperation *operation, id responseObject))success
|
|
failure:(void (^)(AFHTTPRequestOperation *operation, NSError *error))failure;
|
|
|
|
@end
|