https://github.com/kgn/bbbouncepass
An Objective-C library for uploading shots to Dribbble.
https://github.com/kgn/bbbouncepass
Last synced: over 1 year ago
JSON representation
An Objective-C library for uploading shots to Dribbble.
- Host: GitHub
- URL: https://github.com/kgn/bbbouncepass
- Owner: kgn
- License: mit
- Created: 2011-02-21T07:15:45.000Z (over 15 years ago)
- Default Branch: master
- Last Pushed: 2012-03-27T23:36:21.000Z (over 14 years ago)
- Last Synced: 2025-03-26T13:21:18.664Z (over 1 year ago)
- Language: Objective-C
- Homepage:
- Size: 658 KB
- Stars: 13
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
BBBouncePass is an Objective-C library for uploading shots to [Dribbble](http://dribbble.com). There is no official api for doing this so BBBouncePass wraps up all the nasty raw HTTP calls required to accomplish this into a simple api.
#import "BBBouncePass.h"
BBBouncePass *dribbble = [BBBouncePass passWithDelegate:self];
dribbble.username = @"username";
dribbble.password = @"password";
[dribbble shootImageNamed:@"test_image.png"
withData:imageData
name:@"A Test Image"
tags:nil
andIntroductoryComment:nil];
BBBouncePass was originally developed for [Coaches Loupe](https://github.com/InScopeApps/Coaches-Loupe).
BBBouncePass uses [Hpple](https://github.com/topfunky/hpple). All the necessary files from *Hpple* are included with BBBouncePass but you'll need to read their setup docs for information on how to add *libxml2* to your project.
Thanks to [Jonathan Badeen](http://www.badeen.com) for helping with the code and letting me use his [Dribbble](http://dribbble.com) account for testing.