Inherits from NSObject
Declared in PFBaseRequest.h
PFBaseRequest.m

Tasks

Other Methods

Other Methods

Properties

apiKey

The specific Pet Finder API Key to use for the request. This is set using the [PFClient initializeWithAPIKey:@“yourKeyHere”] method. Readonly.

@property (nonatomic, strong, readonly) NSString *apiKey

Return Value

The specific Pet Finder API Key to use for the request. This is set using the [PFClient initializeWithAPIKey:@“yourKeyHere”] method. Readonly.

Declared In

PFBaseRequest.h

baseURL

The baseURL of the Pet Finder API. Readonly.

@property (nonatomic, strong, readonly) NSString *baseURL

Return Value

The baseURL of the Pet Finder API. Readonly.

Declared In

PFBaseRequest.h

output

output string optional (default=full). How much of the pet record to return: id, basic, full

@property (nonatomic, strong) NSString *output

Return Value

output string optional (default=full). How much of the pet record to return: id, basic, full

Declared In

PFBaseRequest.h

params

The key value pairs to use when making requests to the Pet Finder API.

@property (nonatomic, strong) NSMutableDictionary *params

Return Value

The key value pairs to use when making requests to the Pet Finder API.

Declared In

PFBaseRequest.h

path

The specific path for the request. This is the part of the URL immediately following the baseURL. For example: pet.get is the path for the following request http://api.petfinder.com/pet.get?key=someAPIKey&format=json&id=27864848

@property (nonatomic, strong) NSString *path

Return Value

The specific path for the request. This is the part of the URL immediately following the baseURL. For example: pet.get is the path for the following request http://api.petfinder.com/pet.get?key=someAPIKey&format=json&id=27864848

Declared In

PFBaseRequest.h

token

Pet Finder authentication token to use for signing requests. Optional, Readonly.

@property (nonatomic, strong, readonly) NSString *token

Return Value

Pet Finder authentication token to use for signing requests. Optional, Readonly.

Declared In

PFBaseRequest.h

Instance Methods

description

- (NSString *)description

init

- (id)init

initWithPath:

- (instancetype)initWithPath:(NSString *)path_

urlWithParams

- (NSString *)urlWithParams