├── .gitignore ├── ImgurSession.podspec ├── ImgurSession.xcodeproj └── project.pbxproj ├── ImgurSession ├── IMGResponseSerializer.h ├── IMGResponseSerializer.m ├── IMGSession.h ├── IMGSession.m ├── ImgurSession.h ├── Models │ ├── IMGAccount.h │ ├── IMGAccount.m │ ├── IMGAccountSettings.h │ ├── IMGAccountSettings.m │ ├── IMGAlbum.h │ ├── IMGAlbum.m │ ├── IMGBasicAlbum.h │ ├── IMGBasicAlbum.m │ ├── IMGComment.h │ ├── IMGComment.m │ ├── IMGConversation.h │ ├── IMGConversation.m │ ├── IMGGalleryAlbum.h │ ├── IMGGalleryAlbum.m │ ├── IMGGalleryImage.h │ ├── IMGGalleryImage.m │ ├── IMGGalleryObject.h │ ├── IMGGalleryProfile.h │ ├── IMGGalleryProfile.m │ ├── IMGImage.h │ ├── IMGImage.m │ ├── IMGMeme.h │ ├── IMGMeme.m │ ├── IMGMessage.h │ ├── IMGMessage.m │ ├── IMGModel.h │ ├── IMGModel.m │ ├── IMGNotification.h │ ├── IMGNotification.m │ ├── IMGObject.h │ ├── IMGVote.h │ └── IMGVote.m ├── NSDictionary+IMG.h ├── NSDictionary+IMG.m ├── NSError+IMGError.h ├── NSError+IMGError.m └── Requests │ ├── IMGAccountRequest.h │ ├── IMGAccountRequest.m │ ├── IMGAlbumRequest.h │ ├── IMGAlbumRequest.m │ ├── IMGCommentRequest.h │ ├── IMGCommentRequest.m │ ├── IMGConversationRequest.h │ ├── IMGConversationRequest.m │ ├── IMGEndpoint.h │ ├── IMGEndpoint.m │ ├── IMGGalleryRequest.h │ ├── IMGGalleryRequest.m │ ├── IMGImageRequest.h │ ├── IMGImageRequest.m │ ├── IMGMemeGen.h │ ├── IMGMemeGen.m │ ├── IMGNotificationRequest.h │ └── IMGNotificationRequest.m ├── Integrated Tests ├── IMGAccountTests.m ├── IMGAnonymousTests.m ├── IMGAuthenticationTests.m ├── IMGCommentTests.m ├── IMGConversationTest.m ├── IMGGalleryTests.m ├── IMGIntegratedTestCase.h ├── IMGIntegratedTestCase.m └── IMGNotificationTests.m ├── LICENSE ├── Podfile ├── README.md ├── Resources ├── Anonymous Test Config.plist ├── Authenticated Test Config.plist ├── ImgurSession Tests-Prefix.pch ├── ImgurSession-Info.plist ├── ImgurSession-Prefix.pch ├── Responses │ ├── anonymous │ │ ├── album.json │ │ ├── badhotgalleryrequest-noauthenticiation.json │ │ ├── galleryalbum.json │ │ ├── galleryimage.json │ │ ├── geoffsaccount.json │ │ ├── geoffscomments.json │ │ ├── hotgalleryanon.json │ │ ├── image.json │ │ ├── postimage.json │ │ ├── topgalleryanon.json │ │ └── usersubgalleryanon.json │ └── authenticated │ │ ├── allnotifications.json │ │ ├── conversationdelete.json │ │ ├── conversationpost.json │ │ ├── conversations.json │ │ ├── conversationswithravener.json │ │ ├── conversationwithid.json │ │ ├── deletecomment.json │ │ ├── deleteimage.json │ │ ├── deletenotification.json │ │ ├── freshnotification.json │ │ ├── hotgallery.json │ │ ├── imagenotfound.json │ │ ├── invalidaccess.json │ │ ├── invalidcode.json │ │ ├── invalidrefresh.json │ │ ├── myaccount.json │ │ ├── myalbumcount.json │ │ ├── myalbumids.json │ │ ├── myalbums.json │ │ ├── myalbumwithid.json │ │ ├── mycommentcount.json │ │ ├── mycommentdeletewithid.json │ │ ├── mycommentids.json │ │ ├── mycomments.json │ │ ├── mycommentwithid.json │ │ ├── myfavs.json │ │ ├── myimageIDs.json │ │ ├── myimagecount.json │ │ ├── myimagedelete.json │ │ ├── myimages.json │ │ ├── myimagewithid.json │ │ ├── mysettings.json │ │ ├── mysettingschange.json │ │ ├── mysubmissions.json │ │ ├── postcomment.json │ │ ├── postimage.json │ │ ├── refreshedtokens.json │ │ ├── replytocomment.json │ │ ├── topgallery.json │ │ └── usersubmittedgallery.json ├── example.gif └── image-example.jpg ├── SampleApp ├── Base.lproj │ └── Main.storyboard ├── GMMAppDelegate.h ├── GMMAppDelegate.m ├── GMMViewController.h ├── GMMViewController.m ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── LaunchImage.launchimage │ │ └── Contents.json ├── SampleApp-Info.plist ├── SampleApp-Prefix.pch ├── en.lproj │ └── InfoPlist.strings └── main.m └── Stubbed Tests ├── IMGAccountTests.m ├── IMGAnonymousTests.m ├── IMGAuthenticationTests.m ├── IMGCommentTests.m ├── IMGConversationTest.m ├── IMGGalleryTests.m ├── IMGImageTests.m ├── IMGNotificationTests.m ├── IMGTestCase.h └── IMGTestCase.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/.gitignore -------------------------------------------------------------------------------- /ImgurSession.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession.podspec -------------------------------------------------------------------------------- /ImgurSession.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ImgurSession/IMGResponseSerializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/IMGResponseSerializer.h -------------------------------------------------------------------------------- /ImgurSession/IMGResponseSerializer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/IMGResponseSerializer.m -------------------------------------------------------------------------------- /ImgurSession/IMGSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/IMGSession.h -------------------------------------------------------------------------------- /ImgurSession/IMGSession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/IMGSession.m -------------------------------------------------------------------------------- /ImgurSession/ImgurSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/ImgurSession.h -------------------------------------------------------------------------------- /ImgurSession/Models/IMGAccount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/Models/IMGAccount.h -------------------------------------------------------------------------------- /ImgurSession/Models/IMGAccount.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/Models/IMGAccount.m -------------------------------------------------------------------------------- /ImgurSession/Models/IMGAccountSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/Models/IMGAccountSettings.h -------------------------------------------------------------------------------- /ImgurSession/Models/IMGAccountSettings.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/Models/IMGAccountSettings.m -------------------------------------------------------------------------------- /ImgurSession/Models/IMGAlbum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/Models/IMGAlbum.h -------------------------------------------------------------------------------- /ImgurSession/Models/IMGAlbum.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/Models/IMGAlbum.m -------------------------------------------------------------------------------- /ImgurSession/Models/IMGBasicAlbum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/Models/IMGBasicAlbum.h -------------------------------------------------------------------------------- /ImgurSession/Models/IMGBasicAlbum.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/Models/IMGBasicAlbum.m -------------------------------------------------------------------------------- /ImgurSession/Models/IMGComment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/Models/IMGComment.h -------------------------------------------------------------------------------- /ImgurSession/Models/IMGComment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/Models/IMGComment.m -------------------------------------------------------------------------------- /ImgurSession/Models/IMGConversation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/Models/IMGConversation.h -------------------------------------------------------------------------------- /ImgurSession/Models/IMGConversation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/Models/IMGConversation.m -------------------------------------------------------------------------------- /ImgurSession/Models/IMGGalleryAlbum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/Models/IMGGalleryAlbum.h -------------------------------------------------------------------------------- /ImgurSession/Models/IMGGalleryAlbum.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/Models/IMGGalleryAlbum.m -------------------------------------------------------------------------------- /ImgurSession/Models/IMGGalleryImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/Models/IMGGalleryImage.h -------------------------------------------------------------------------------- /ImgurSession/Models/IMGGalleryImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/Models/IMGGalleryImage.m -------------------------------------------------------------------------------- /ImgurSession/Models/IMGGalleryObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/Models/IMGGalleryObject.h -------------------------------------------------------------------------------- /ImgurSession/Models/IMGGalleryProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/Models/IMGGalleryProfile.h -------------------------------------------------------------------------------- /ImgurSession/Models/IMGGalleryProfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/Models/IMGGalleryProfile.m -------------------------------------------------------------------------------- /ImgurSession/Models/IMGImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/Models/IMGImage.h -------------------------------------------------------------------------------- /ImgurSession/Models/IMGImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/Models/IMGImage.m -------------------------------------------------------------------------------- /ImgurSession/Models/IMGMeme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/Models/IMGMeme.h -------------------------------------------------------------------------------- /ImgurSession/Models/IMGMeme.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/Models/IMGMeme.m -------------------------------------------------------------------------------- /ImgurSession/Models/IMGMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/Models/IMGMessage.h -------------------------------------------------------------------------------- /ImgurSession/Models/IMGMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/Models/IMGMessage.m -------------------------------------------------------------------------------- /ImgurSession/Models/IMGModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/Models/IMGModel.h -------------------------------------------------------------------------------- /ImgurSession/Models/IMGModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/Models/IMGModel.m -------------------------------------------------------------------------------- /ImgurSession/Models/IMGNotification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/Models/IMGNotification.h -------------------------------------------------------------------------------- /ImgurSession/Models/IMGNotification.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/Models/IMGNotification.m -------------------------------------------------------------------------------- /ImgurSession/Models/IMGObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/Models/IMGObject.h -------------------------------------------------------------------------------- /ImgurSession/Models/IMGVote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/Models/IMGVote.h -------------------------------------------------------------------------------- /ImgurSession/Models/IMGVote.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/Models/IMGVote.m -------------------------------------------------------------------------------- /ImgurSession/NSDictionary+IMG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/NSDictionary+IMG.h -------------------------------------------------------------------------------- /ImgurSession/NSDictionary+IMG.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/NSDictionary+IMG.m -------------------------------------------------------------------------------- /ImgurSession/NSError+IMGError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/NSError+IMGError.h -------------------------------------------------------------------------------- /ImgurSession/NSError+IMGError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/NSError+IMGError.m -------------------------------------------------------------------------------- /ImgurSession/Requests/IMGAccountRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/Requests/IMGAccountRequest.h -------------------------------------------------------------------------------- /ImgurSession/Requests/IMGAccountRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/Requests/IMGAccountRequest.m -------------------------------------------------------------------------------- /ImgurSession/Requests/IMGAlbumRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/Requests/IMGAlbumRequest.h -------------------------------------------------------------------------------- /ImgurSession/Requests/IMGAlbumRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/Requests/IMGAlbumRequest.m -------------------------------------------------------------------------------- /ImgurSession/Requests/IMGCommentRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/Requests/IMGCommentRequest.h -------------------------------------------------------------------------------- /ImgurSession/Requests/IMGCommentRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/Requests/IMGCommentRequest.m -------------------------------------------------------------------------------- /ImgurSession/Requests/IMGConversationRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/Requests/IMGConversationRequest.h -------------------------------------------------------------------------------- /ImgurSession/Requests/IMGConversationRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/Requests/IMGConversationRequest.m -------------------------------------------------------------------------------- /ImgurSession/Requests/IMGEndpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/Requests/IMGEndpoint.h -------------------------------------------------------------------------------- /ImgurSession/Requests/IMGEndpoint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/Requests/IMGEndpoint.m -------------------------------------------------------------------------------- /ImgurSession/Requests/IMGGalleryRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/Requests/IMGGalleryRequest.h -------------------------------------------------------------------------------- /ImgurSession/Requests/IMGGalleryRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/Requests/IMGGalleryRequest.m -------------------------------------------------------------------------------- /ImgurSession/Requests/IMGImageRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/Requests/IMGImageRequest.h -------------------------------------------------------------------------------- /ImgurSession/Requests/IMGImageRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/Requests/IMGImageRequest.m -------------------------------------------------------------------------------- /ImgurSession/Requests/IMGMemeGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/Requests/IMGMemeGen.h -------------------------------------------------------------------------------- /ImgurSession/Requests/IMGMemeGen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/Requests/IMGMemeGen.m -------------------------------------------------------------------------------- /ImgurSession/Requests/IMGNotificationRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/Requests/IMGNotificationRequest.h -------------------------------------------------------------------------------- /ImgurSession/Requests/IMGNotificationRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/ImgurSession/Requests/IMGNotificationRequest.m -------------------------------------------------------------------------------- /Integrated Tests/IMGAccountTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Integrated Tests/IMGAccountTests.m -------------------------------------------------------------------------------- /Integrated Tests/IMGAnonymousTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Integrated Tests/IMGAnonymousTests.m -------------------------------------------------------------------------------- /Integrated Tests/IMGAuthenticationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Integrated Tests/IMGAuthenticationTests.m -------------------------------------------------------------------------------- /Integrated Tests/IMGCommentTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Integrated Tests/IMGCommentTests.m -------------------------------------------------------------------------------- /Integrated Tests/IMGConversationTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Integrated Tests/IMGConversationTest.m -------------------------------------------------------------------------------- /Integrated Tests/IMGGalleryTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Integrated Tests/IMGGalleryTests.m -------------------------------------------------------------------------------- /Integrated Tests/IMGIntegratedTestCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Integrated Tests/IMGIntegratedTestCase.h -------------------------------------------------------------------------------- /Integrated Tests/IMGIntegratedTestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Integrated Tests/IMGIntegratedTestCase.m -------------------------------------------------------------------------------- /Integrated Tests/IMGNotificationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Integrated Tests/IMGNotificationTests.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Podfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Anonymous Test Config.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Anonymous Test Config.plist -------------------------------------------------------------------------------- /Resources/Authenticated Test Config.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Authenticated Test Config.plist -------------------------------------------------------------------------------- /Resources/ImgurSession Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/ImgurSession Tests-Prefix.pch -------------------------------------------------------------------------------- /Resources/ImgurSession-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/ImgurSession-Info.plist -------------------------------------------------------------------------------- /Resources/ImgurSession-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/ImgurSession-Prefix.pch -------------------------------------------------------------------------------- /Resources/Responses/anonymous/album.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Responses/anonymous/album.json -------------------------------------------------------------------------------- /Resources/Responses/anonymous/badhotgalleryrequest-noauthenticiation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Responses/anonymous/badhotgalleryrequest-noauthenticiation.json -------------------------------------------------------------------------------- /Resources/Responses/anonymous/galleryalbum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Responses/anonymous/galleryalbum.json -------------------------------------------------------------------------------- /Resources/Responses/anonymous/galleryimage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Responses/anonymous/galleryimage.json -------------------------------------------------------------------------------- /Resources/Responses/anonymous/geoffsaccount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Responses/anonymous/geoffsaccount.json -------------------------------------------------------------------------------- /Resources/Responses/anonymous/geoffscomments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Responses/anonymous/geoffscomments.json -------------------------------------------------------------------------------- /Resources/Responses/anonymous/hotgalleryanon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Responses/anonymous/hotgalleryanon.json -------------------------------------------------------------------------------- /Resources/Responses/anonymous/image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Responses/anonymous/image.json -------------------------------------------------------------------------------- /Resources/Responses/anonymous/postimage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Responses/anonymous/postimage.json -------------------------------------------------------------------------------- /Resources/Responses/anonymous/topgalleryanon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Responses/anonymous/topgalleryanon.json -------------------------------------------------------------------------------- /Resources/Responses/anonymous/usersubgalleryanon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Responses/anonymous/usersubgalleryanon.json -------------------------------------------------------------------------------- /Resources/Responses/authenticated/allnotifications.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Responses/authenticated/allnotifications.json -------------------------------------------------------------------------------- /Resources/Responses/authenticated/conversationdelete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Responses/authenticated/conversationdelete.json -------------------------------------------------------------------------------- /Resources/Responses/authenticated/conversationpost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Responses/authenticated/conversationpost.json -------------------------------------------------------------------------------- /Resources/Responses/authenticated/conversations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Responses/authenticated/conversations.json -------------------------------------------------------------------------------- /Resources/Responses/authenticated/conversationswithravener.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Responses/authenticated/conversationswithravener.json -------------------------------------------------------------------------------- /Resources/Responses/authenticated/conversationwithid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Responses/authenticated/conversationwithid.json -------------------------------------------------------------------------------- /Resources/Responses/authenticated/deletecomment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Responses/authenticated/deletecomment.json -------------------------------------------------------------------------------- /Resources/Responses/authenticated/deleteimage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Responses/authenticated/deleteimage.json -------------------------------------------------------------------------------- /Resources/Responses/authenticated/deletenotification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Responses/authenticated/deletenotification.json -------------------------------------------------------------------------------- /Resources/Responses/authenticated/freshnotification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Responses/authenticated/freshnotification.json -------------------------------------------------------------------------------- /Resources/Responses/authenticated/hotgallery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Responses/authenticated/hotgallery.json -------------------------------------------------------------------------------- /Resources/Responses/authenticated/imagenotfound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Responses/authenticated/imagenotfound.json -------------------------------------------------------------------------------- /Resources/Responses/authenticated/invalidaccess.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Responses/authenticated/invalidaccess.json -------------------------------------------------------------------------------- /Resources/Responses/authenticated/invalidcode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Responses/authenticated/invalidcode.json -------------------------------------------------------------------------------- /Resources/Responses/authenticated/invalidrefresh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Responses/authenticated/invalidrefresh.json -------------------------------------------------------------------------------- /Resources/Responses/authenticated/myaccount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Responses/authenticated/myaccount.json -------------------------------------------------------------------------------- /Resources/Responses/authenticated/myalbumcount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Responses/authenticated/myalbumcount.json -------------------------------------------------------------------------------- /Resources/Responses/authenticated/myalbumids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Responses/authenticated/myalbumids.json -------------------------------------------------------------------------------- /Resources/Responses/authenticated/myalbums.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Responses/authenticated/myalbums.json -------------------------------------------------------------------------------- /Resources/Responses/authenticated/myalbumwithid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Responses/authenticated/myalbumwithid.json -------------------------------------------------------------------------------- /Resources/Responses/authenticated/mycommentcount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Responses/authenticated/mycommentcount.json -------------------------------------------------------------------------------- /Resources/Responses/authenticated/mycommentdeletewithid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Responses/authenticated/mycommentdeletewithid.json -------------------------------------------------------------------------------- /Resources/Responses/authenticated/mycommentids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Responses/authenticated/mycommentids.json -------------------------------------------------------------------------------- /Resources/Responses/authenticated/mycomments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Responses/authenticated/mycomments.json -------------------------------------------------------------------------------- /Resources/Responses/authenticated/mycommentwithid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Responses/authenticated/mycommentwithid.json -------------------------------------------------------------------------------- /Resources/Responses/authenticated/myfavs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Responses/authenticated/myfavs.json -------------------------------------------------------------------------------- /Resources/Responses/authenticated/myimageIDs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Responses/authenticated/myimageIDs.json -------------------------------------------------------------------------------- /Resources/Responses/authenticated/myimagecount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Responses/authenticated/myimagecount.json -------------------------------------------------------------------------------- /Resources/Responses/authenticated/myimagedelete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Responses/authenticated/myimagedelete.json -------------------------------------------------------------------------------- /Resources/Responses/authenticated/myimages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Responses/authenticated/myimages.json -------------------------------------------------------------------------------- /Resources/Responses/authenticated/myimagewithid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Responses/authenticated/myimagewithid.json -------------------------------------------------------------------------------- /Resources/Responses/authenticated/mysettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Responses/authenticated/mysettings.json -------------------------------------------------------------------------------- /Resources/Responses/authenticated/mysettingschange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Responses/authenticated/mysettingschange.json -------------------------------------------------------------------------------- /Resources/Responses/authenticated/mysubmissions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Responses/authenticated/mysubmissions.json -------------------------------------------------------------------------------- /Resources/Responses/authenticated/postcomment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Responses/authenticated/postcomment.json -------------------------------------------------------------------------------- /Resources/Responses/authenticated/postimage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Responses/authenticated/postimage.json -------------------------------------------------------------------------------- /Resources/Responses/authenticated/refreshedtokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Responses/authenticated/refreshedtokens.json -------------------------------------------------------------------------------- /Resources/Responses/authenticated/replytocomment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Responses/authenticated/replytocomment.json -------------------------------------------------------------------------------- /Resources/Responses/authenticated/topgallery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Responses/authenticated/topgallery.json -------------------------------------------------------------------------------- /Resources/Responses/authenticated/usersubmittedgallery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/Responses/authenticated/usersubmittedgallery.json -------------------------------------------------------------------------------- /Resources/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/example.gif -------------------------------------------------------------------------------- /Resources/image-example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Resources/image-example.jpg -------------------------------------------------------------------------------- /SampleApp/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/SampleApp/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SampleApp/GMMAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/SampleApp/GMMAppDelegate.h -------------------------------------------------------------------------------- /SampleApp/GMMAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/SampleApp/GMMAppDelegate.m -------------------------------------------------------------------------------- /SampleApp/GMMViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/SampleApp/GMMViewController.h -------------------------------------------------------------------------------- /SampleApp/GMMViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/SampleApp/GMMViewController.m -------------------------------------------------------------------------------- /SampleApp/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/SampleApp/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SampleApp/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/SampleApp/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /SampleApp/SampleApp-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/SampleApp/SampleApp-Info.plist -------------------------------------------------------------------------------- /SampleApp/SampleApp-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/SampleApp/SampleApp-Prefix.pch -------------------------------------------------------------------------------- /SampleApp/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /SampleApp/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/SampleApp/main.m -------------------------------------------------------------------------------- /Stubbed Tests/IMGAccountTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Stubbed Tests/IMGAccountTests.m -------------------------------------------------------------------------------- /Stubbed Tests/IMGAnonymousTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Stubbed Tests/IMGAnonymousTests.m -------------------------------------------------------------------------------- /Stubbed Tests/IMGAuthenticationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Stubbed Tests/IMGAuthenticationTests.m -------------------------------------------------------------------------------- /Stubbed Tests/IMGCommentTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Stubbed Tests/IMGCommentTests.m -------------------------------------------------------------------------------- /Stubbed Tests/IMGConversationTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Stubbed Tests/IMGConversationTest.m -------------------------------------------------------------------------------- /Stubbed Tests/IMGGalleryTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Stubbed Tests/IMGGalleryTests.m -------------------------------------------------------------------------------- /Stubbed Tests/IMGImageTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Stubbed Tests/IMGImageTests.m -------------------------------------------------------------------------------- /Stubbed Tests/IMGNotificationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Stubbed Tests/IMGNotificationTests.m -------------------------------------------------------------------------------- /Stubbed Tests/IMGTestCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Stubbed Tests/IMGTestCase.h -------------------------------------------------------------------------------- /Stubbed Tests/IMGTestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoffmacd/ImgurSession/HEAD/Stubbed Tests/IMGTestCase.m --------------------------------------------------------------------------------