{"id":15039628,"url":"https://github.com/finb/bark","last_synced_at":"2025-05-13T17:05:17.735Z","repository":{"id":38343869,"uuid":"124205615","full_name":"Finb/Bark","owner":"Finb","description":"Bark is an iOS App which allows you to push custom notifications to your iPhone","archived":false,"fork":false,"pushed_at":"2025-05-12T07:05:49.000Z","size":9926,"stargazers_count":6069,"open_issues_count":5,"forks_count":492,"subscribers_count":32,"default_branch":"master","last_synced_at":"2025-05-12T08:25:24.884Z","etag":null,"topics":["ios","ios-app","ios-swift","mvvm","mvvm-architecture","push-notifications","rxcocoa","rxdatasources","rxswift"],"latest_commit_sha":null,"homepage":"https://bark.day.app","language":"Swift","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/Finb.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":["Finb"]}},"created_at":"2018-03-07T08:40:20.000Z","updated_at":"2025-05-12T07:40:59.000Z","dependencies_parsed_at":"2023-02-16T03:45:56.118Z","dependency_job_id":"7e1ec0cb-1ca7-45c2-a6ab-164e9f40c78f","html_url":"https://github.com/Finb/Bark","commit_stats":{"total_commits":375,"total_committers":15,"mean_commits":25.0,"dds":0.06133333333333335,"last_synced_commit":"8a2a7fc2b44073498e4abea54f62497a0e06926e"},"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Finb%2FBark","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Finb%2FBark/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Finb%2FBark/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Finb%2FBark/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Finb","download_url":"https://codeload.github.com/Finb/Bark/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253990460,"owners_count":21995774,"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":["ios","ios-app","ios-swift","mvvm","mvvm-architecture","push-notifications","rxcocoa","rxdatasources","rxswift"],"created_at":"2024-09-24T20:43:28.662Z","updated_at":"2025-05-13T17:05:17.704Z","avatar_url":"https://github.com/Finb.png","language":"Swift","funding_links":["https://github.com/sponsors/Finb"],"categories":[],"sub_categories":[],"readme":"English | **[中文](README.zh.md)**\n## Bark\nBark is a push notification tool app. It's free, simple, and secure, leveraging APNs without draining device battery.\u003cbr/\u003e\nBark supports many advanced features of iOS notifications, including notification grouping, custom push icons, sounds, time-sensitive notifications, critical alerts, and more.\u003cbr/\u003e \nAdditionally, Bark supports self-hosted servers and offers encrypted push notifications to ensure privacy and security. \u003cbr/\u003e\n\n## Download\n\u003ca target='_blank' href='https://apps.apple.com/app/bark-custom-notifications/id1403753865'\u003e\n\u003cimg src='http://ww2.sinaimg.cn/large/0060lm7Tgw1f1hgrs1ebwj308102q0sp.jpg' width='144' height='49' /\u003e\n\u003c/a\u003e\n\n## Documentation\n[https://bark.day.app/#/en-us/](https://bark.day.app/#/en-us/)\n\n## Feedback\n[Telegram](https://t.me/joinchat/OsCbLzovUAE0YjY1)\n\n## Usage\n1. Open the app and copy the test URL\n\n\u003cimg src=\"https://wx4.sinaimg.cn/mw2000/003rYfqply1grd1meqrvcj60bi08zt9i02.jpg\" width=365 /\u003e\n\n2. Modify the content and request this URL\n```\nYou can send GET or POST requests, and you'll receive a push notification immediately upon success.\n\nURL structure: The first part is the key, followed by three matches\n/:key/:body \n/:key/:title/:body \n/:key/:title/:subtitle/:body \n\ntitle: The push title, slightly larger than the body text \nsubtitle: The push subtitle\nbody: The push content, use the newline character '\\n' for line breaks \nFor POST requests, the parameter names are the same as above\n```\n\n## Parameters\n\n* url\n```\n// Click on the push notification to jump to the specified URL\nhttps://api.day.app/yourkey/url?url=https://www.google.com \n```\n* group\n```\n// Specify the push message group to view pushes by group.\nhttps://api.day.app/yourkey/group?group=groupName\n```\n* icon (supported on iOS 15 and above)\n```\n// Specify the push message icon\nhttps://api.day.app/yourkey/icon?icon=http://day.app/assets/images/avatar.jpg\n```\n* sound\n```\n// Specify the push message sound\nhttps://api.day.app/yourkey/sound?sound=alarm\n```\n* call\n```\n// Play sound repeatedly for 30 seconds\nhttps://api.day.app/yourkey/call?call=1\n```\n* ciphertext\n```\n// Encrypted push message\nhttps://api.day.app/yourkey/ciphertext?ciphertext=\n```\n* Time-sensitive notifications\n```\n// Set time-sensitive notifications\nhttps://api.day.app/yourkey/时效性通知?level=timeSensitive\n\n// Optional values \n// active: Default value when not set, the system will immediately display the notification by lighting up the screen. \n// timeSensitive: Time-sensitive notification, can be displayed during focus mode. \n// passive: Adds notification to the notification list without lighting up the screen.\n```\n* Critical alerts\n```\n// Set critical alerts\nhttps://api.day.app/yourkey/criticalAlert?level=critical\n\nCritical alerts will ignore silent and do not disturb modes, always playing the notification sound and displaying on the screen.\n```\n\n## Others\n- [Online Scheduled Sending](https://api.ihint.me/bark.html)\n- [Windows Push Client](https://github.com/HsuDan/BarkHelper)\n- [Cross-platform Command Line Application](https://github.com/JasonkayZK/bark-cli)\n- [Bark GitHub Actions](https://github.com/harryzcy/action-bark)\n- [Quicker Actions](https://getquicker.net/Sharedaction?code=e927d844-d212-4428-758d-08d69de12a3b)\n- [Bark for Wox](https://github.com/Zeroto521/Wox.Plugin.Bark)\n- [bark-jssdk](https://github.com/afeiship/bark-jssdk)\n- [bark.js](https://github.com/chimpdev/bark.js)\n- [java-bark-server](https://gitee.com/hotlcc/java-bark-server)\n- [bark-java-sdk](https://github.com/MoshiCoCo/bark-java-sdk)\n- [Python for Bark](https://github.com/funny-cat-happy/barknotificator)\n- [uTools for Bark](https://u.tools/plugins/detail/PushOne/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffinb%2Fbark","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffinb%2Fbark","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffinb%2Fbark/lists"}