{"id":18307425,"url":"https://github.com/devgeeks/readitlaterplugin","last_synced_at":"2025-04-05T17:31:56.123Z","repository":{"id":2738972,"uuid":"3734754","full_name":"devgeeks/ReadItLaterPlugin","owner":"devgeeks","description":"A PhoneGap plugin for iOS for saving a URL to Read It Later (http://readitlaterlist.com)","archived":false,"fork":false,"pushed_at":"2012-08-23T07:53:31.000Z","size":87,"stargazers_count":4,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-21T08:05:39.315Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Objective-C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/devgeeks.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2012-03-16T01:27:38.000Z","updated_at":"2014-02-22T21:01:24.000Z","dependencies_parsed_at":"2022-08-25T21:00:17.386Z","dependency_job_id":null,"html_url":"https://github.com/devgeeks/ReadItLaterPlugin","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devgeeks%2FReadItLaterPlugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devgeeks%2FReadItLaterPlugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devgeeks%2FReadItLaterPlugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devgeeks%2FReadItLaterPlugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devgeeks","download_url":"https://codeload.github.com/devgeeks/ReadItLaterPlugin/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247374795,"owners_count":20928893,"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","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-11-05T16:04:13.140Z","updated_at":"2025-04-05T17:31:55.861Z","avatar_url":"https://github.com/devgeeks.png","language":"Objective-C","funding_links":[],"categories":[],"sub_categories":[],"readme":"ReadItLaterPlugin\n============\n\n#### NOTE: This plugin is a bit pointless as Read It Later has changed to [Pocket](http://getpocket.com) now. \n\n\nInstallation\n------------\n\nThis plugin allows you to save a URL to [Read It Later](http://readitlaterlist.com) from your app.\n\nAdd the plugin much like any other:\n\n1.\tAdd the ReadItLaterPlugin.h and VolumeSlider.m classes to your Plugins folder in Xcode (use \"Create groups for any added folders\")\n2.\tAdd the ReadItLaterPlugin.js file to your www folder\n3.\tAdd the ReadItLaterPlugin.js to your html file. eg: `\u003cscript type=\"text/javascript\" charset=\"utf-8\" src=\"ReadItLaterPlugin.js\"\u003e\u003c/script\u003e`\n4.\tAdd the plugin to the PhoneGap.plist under Plugins (key: \"ReadItLaterPlugin\" value: \"ReadItLaterPlugin\")\n\nNext, get the Read It Later API iPhone Library and add it to your project:\n\n1.\t[Download the library from Read It Later](http://readitlaterlist.com/api/libraries-iphone#download)\n2. \tUnzip the library and examples\n3.\tCopy these four files into your Xcode project under the Plugins folder (again, use \"Create groups for any added folders\")\n\t* `ReadItLaterLite.h`\n\t* `ReadItLaterLite.m`\n\t* `ReadItLaterFull.h`\n\t* `ReadItLaterFull.m`\n4.\t[Get an API Key](http://readitlaterlist.com/api/signup/) from Read It Later for your app\n5.\tAdd your shiny new API key to the top of the `ReadItLaterLite.m` file you copied in above\n\t* `static NSString *apikey = @\"\u003capi key here\u003e\";`\n6.\tAdd the name of your app (as you entered it to get your API key above) as well\n\t* `static NSString *nameOfYourApp = @\"\u003cname of your app here\u003e\";`\n\nFinally, call the `saveToReadItLater()` method using a success callback and an object containing a url and a title:\n\n### Example\n```javascript\nfunction onDeviceReady()\n{\n\tvar readItLaterPlugin = window.plugins.readItLaterPlugin;\n\treadItLaterPlugin.saveToReadItLater(\n\t\tfunction(){\n\t\t\tconsole.log(\"Successfully saved to Read It Later\");\n\t\t}, \n\t\t{ \n\t\t\turl: \"http://github.com/devgeeks\", \n\t\t\ttitle: \"Devgeeks on GitHub\"\n\t\t}\n\t);\n}\n```\n\n## License\n\nThe MIT License\n\nCopyright (c) 2011 Tommy-Carlos Williams (http://github.com/devgeeks)\n\nPermission 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:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE 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.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevgeeks%2Freaditlaterplugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevgeeks%2Freaditlaterplugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevgeeks%2Freaditlaterplugin/lists"}