{"id":1677,"url":"https://github.com/mattt/Orbiter","last_synced_at":"2025-08-02T04:32:12.131Z","repository":{"id":5701796,"uuid":"6912431","full_name":"mattt/Orbiter","owner":"mattt","description":"Push Notification Registration for iOS","archived":true,"fork":false,"pushed_at":"2021-06-22T17:10:23.000Z","size":37,"stargazers_count":673,"open_issues_count":0,"forks_count":46,"subscribers_count":22,"default_branch":"master","last_synced_at":"2024-12-06T08:34:49.858Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Objective-C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mattt.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2012-11-29T00:10:13.000Z","updated_at":"2024-10-29T16:32:51.000Z","dependencies_parsed_at":"2022-08-24T20:21:17.298Z","dependency_job_id":null,"html_url":"https://github.com/mattt/Orbiter","commit_stats":null,"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/mattt/Orbiter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mattt%2FOrbiter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mattt%2FOrbiter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mattt%2FOrbiter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mattt%2FOrbiter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mattt","download_url":"https://codeload.github.com/mattt/Orbiter/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mattt%2FOrbiter/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268334615,"owners_count":24233793,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-02T02:00:12.353Z","response_time":74,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-01-05T20:15:53.083Z","updated_at":"2025-08-02T04:32:11.794Z","avatar_url":"https://github.com/mattt.png","language":"Objective-C","funding_links":[],"categories":["Notifications","Objective-C"],"sub_categories":["Push Notifications","Other free courses"],"readme":"# Orbiter\n\n\u003e **Note**: This project is no longer being maintained.\n\nFor most iOS client / server applications, push notifications are negotiated through an intermediary service provider, such as [Urban Airship](http://urbanairship.com). The service provider exposes APIs to register a device token, as well as APIs to send push notifications to devices meeting some specified criteria.\n\nOrbiter is a small library that provides simple interfaces to register (and unregister) for Push Notifications with [Urban Airship](http://urbanairship.com) (without needing to include their SDK), as well as [Helios](http://helios.io) apps.\n\n\u003e Orbiter is named for the [orbital space craft of the Space Shuttle program](http://en.wikipedia.org/wiki/Space_Shuttle_orbiter), which houses the flight crew and electronics used to communicate with mission control.\n\n\u003e This project is part of a series of open source libraries covering the mission-critical aspects of an iOS app's infrastructure. Be sure to check out its sister projects: [GroundControl](https://github.com/mattt/GroundControl), [SkyLab](https://github.com/mattt/SkyLab), [CargoBay](https://github.com/mattt/CargoBay), and [houston](https://github.com/mattt/houston).\n\n## Example Usage\n\n### Urban Airship Registration\n\n```objective-c\n- (void)application:(UIApplication *)application\ndidRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken\n{\n    [[UrbanAirshipOrbiter urbanAirshipManagerWithApplicationKey:@\"...\" applicationSecret:@\"...\"] registerDeviceToken:deviceToken withAlias:nil success:^(id responseObject) {\n        NSLog(@\"Registration Success: %@\", responseObject);\n    } failure:^(NSError *error) {\n        NSLog(@\"Registration Error: %@\", error);\n    }];\n}\n```\n\n### Helios Registration\n\n```objective-c\n- (void)application:(UIApplication *)application\ndidRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken\n{\n    NSURL *serverURL = [NSURL URLWithString:@\"http://raging-notification-3556.herokuapp.com/\"];\n    Orbiter *orbiter = [[Orbiter alloc] initWithBaseURL:serverURL credential:nil];\n    [orbiter registerDeviceToken:deviceToken withAlias:nil success:^(id responseObject) {\n        NSLog(@\"Registration Success: %@\", responseObject);\n    } failure:^(NSError *error) {\n        NSLog(@\"Registration Error: %@\", error);\n    }];\n}\n```\n\n## License\n\nOrbiter is available under the MIT license. See the LICENSE file for more info.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmattt%2FOrbiter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmattt%2FOrbiter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmattt%2FOrbiter/lists"}