defvol / TransloaditAPIClient

A Transloadit API client for iOS

Home Page:http://transloadit.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

A Transloadit API Wrapper for iOS

This is a refactored version of the Transloadit iPhone SDK powered by AFNetworking and blocks.

endorse

Getting started

To work with the API you will need a transloadit account, as well as a template id.

In order to use the SDK in your own app, simply add TransloaditAPIClient.[h|m] into your XCode project.

TransloaditAPIClient depends on AFNetworking

Setup

Installation is quite simple by using Cocoapods for dependency management.

A simple Podfile would be:

platform :ios

pod 'TransloaditAPIClient', :git => 'https://github.com/wilhelmbot/TransloaditAPIClient.git'

A gentle introduction to the TransloaditAPIClient

Initializing

[[TransloaditAPIClient sharedClient] authenticateWithKey:@"<AUTH-KEY>" andSecret:@"<AUTH-SECRET>"];
[[TransloaditAPIClient sharedClient] setTemplateId:@"<TEMPLATE-ID>"];

Uploading a picture selected from the UIImagePickerController

- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info
{
  [[TransloaditAPIClient sharedClient] uploadFileFromPicker:info];
}

Uploading progress

[[TransloaditAPIClient sharedClient] setUploadProgressBlock:^(NSInteger bytesWritten, long long totalBytesWritten, long long totalBytesExpectedToWrite) {
  NSLog(@"Sent %lld of %lld bytes", totalBytesWritten, totalBytesExpectedToWrite);
  if (totalBytesWritten == totalBytesExpectedToWrite)
    NSLog(@"We are done uploading!");
}];

Handling success and failure

[[TransloaditAPIClient sharedClient] setCompletionBlockWithSuccess:^(NSDictionary *JSON) {
  NSLog(@"Transloadit's response: \n%@", [JSON description]);
} failure:^(NSError *error) {
  NSLog(@"Awww snap! Failed with error '%@'", [error localizedDescription]);
}];

Authors

  1. Rod Wilhelmy from Citivox
  2. Felix Geisendörfer from Transloadit

License

(The MIT License)

Copyright (c) 2010-2012 Felix Geisendörfer (felix.geisendoerfer@transloadit.com)
Copyright (c) 2012 Citivox, Inc.
Copyright (c) 2012 Rod Wilhelmy (rod@citivox.com)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

A Transloadit API client for iOS

http://transloadit.com/

License:MIT License


Languages

Language:Objective-C 97.7%Language:Ruby 2.3%