Code Monkey home page Code Monkey logo

500px-ios-api's Introduction

Writing a wrapper for the 500px API in Objective-C to make it easier for developers to write apps against this awesome service.

Stil a work in progress; I'm only working on this in my spare time. It currently supports reading from the 500px API and retrieving photos, users, favourites, followers, etc. Check out the API Documentation for more information.

Requirements

This project requires LLVM 4.0+ and Xcode 4.5+, and is compiled with ARC.

How to use:

Go to your Xocde project directory and type the following:

git submodule init
git submodule add git://github.com/500px/500px-iOS-api.git

Once the submodule has finished downloading, drag and drop the new Xcode project into your existing project.

Drag and drop subproject

Now that the subproject is added, we need to link against it. Expand the subproject's Products folder and drag the libPXAPI.a file into your projects "Link Binary With libraries" list in the project details editor.

Drag and drop the library to be linked against

Under "Build Settings", add an additional Linker flag of -ObjC.

Additional linker flag

Now that you're linking against the library, you're almost done! Wherever you want to use the 500px API, make sure you import the PXAPI.h file:

#import <PXAPI/PXAPI.h>

Also in your project's build settings, find "Header Search Paths" and add $(SRCROOT) and check the box indicating a recurisve search.

NOTE: If the path to your project contains spaces, you must put $(SRCROOT) (and all other custom search paths) in quotes.

Header Search Path

In your application delegate's application:didFinishLaunchingWithOptions: method, add this line to set your consumer key and consumer secret:

[PXRequest setConsumerKey:@"__CHANGE_ME__" consumerSecret:@"__CHANGE_ME__"];

Got to the 500px Applications Page to register for your consumer key and secret.

There are two ways to use this library. The first is to use the PXAPIHelper class methods to generate NSURLRequest objects to use directly (either with NSURLConnection or ASIHTTPRequest. The other way is to use the built-in PXRequest class methods to create requests against the 500px API; they provide a completion block that is executed after the request returns, and they also post notifications to the default NSNotificationCenter.

Tests

The library currently has a suite of integration tests that run against the live 500px API. In order to run these tests, you must replace the following values in PXIntegrationTests.h.

#define kUserNameForAuthentication  @"__CHANGE_ME__"
#define kPasswordForAuthentication  @"__CHANGE_ME__"

#define kPXAPIConsumerKey       @"__CHANGE_ME__"
#define kPXAPIConsumerSecret    @"__CHANGE_ME__"

There are also some unit tests. OCMock tragically does not allow us to test class methods, so the unit tests are unforunately limited in their scope. However, between the unit tests and the integration tests, coverage is pretty solid.

500px-ios-api's People

Contributors

arthurnn avatar ashfurrow avatar dwarfland avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.