All Projects → Finb → Bark

Finb / Bark

Licence: mit
Bark is an iOS App which allows you to push customed notifications to your iPhone

Programming Languages

swift
15916 projects
ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to Bark

Papr
🌁 An Unsplash app for iOS
Stars: ✭ 1,025 (-56.77%)
Mutual labels:  ios-app, rxswift, mvvm, mvvm-architecture
Swifthub
GitHub iOS client in RxSwift and MVVM-C clean architecture
Stars: ✭ 2,330 (-1.73%)
Mutual labels:  rxswift, mvvm, mvvm-architecture
Expenso Ios
A Simple Expense Tracker App built to demonstrate the use of SwiftUI, CoreData, Charts, Biometrics (Face & Touch ID) and MVVM Architecture.
Stars: ✭ 191 (-91.94%)
Mutual labels:  ios-app, mvvm, mvvm-architecture
Mp3ID3Tagger
🎶🎵A macOS application to edit the ID3 tag of your mp3 files. Developed with RxSwift and RxCocoa. 🎸🎼
Stars: ✭ 17 (-99.28%)
Mutual labels:  rxswift, mvvm, rxcocoa
Xcoordinator
🎌 Powerful navigation library for iOS based on the coordinator pattern
Stars: ✭ 1,752 (-26.11%)
Mutual labels:  rxswift, mvvm, mvvm-architecture
MovieInfoMVVMiOS
Movie Info app using TMDb API built with MVVM
Stars: ✭ 38 (-98.4%)
Mutual labels:  rxswift, mvvm, rxcocoa
RxCocoa-Texture
RxCocoa Extension Library for Texture.
Stars: ✭ 98 (-95.87%)
Mutual labels:  rxswift, ios-app, rxcocoa
Cathay
an iOS project for demonstration of Reactive Programming
Stars: ✭ 21 (-99.11%)
Mutual labels:  rxswift, mvvm, rxcocoa
TVToday
iOS TV Shows app with TMDb Api. RxSwift, MVVM, Clean Architecture. Tuist + Swift Package Manager
Stars: ✭ 27 (-98.86%)
Mutual labels:  rxswift, mvvm, ios-app
GITGET
GitHub의 Contributions를 iOS의 Widget으로 보여주는 App
Stars: ✭ 101 (-95.74%)
Mutual labels:  rxswift, mvvm, rxcocoa
Rxxmly
RxSwift 实现MVVM高仿喜马拉雅的函数响应式编程
Stars: ✭ 313 (-86.8%)
Mutual labels:  ios-app, rxswift, mvvm
DailyNews
Daily News is a news app with good looking user interface ! Apps architecture is MVVM and used RxSwift for binding.
Stars: ✭ 31 (-98.69%)
Mutual labels:  rxswift, ios-app, rxcocoa
Iossampleapp
Sample iOS app demonstrating Coordinators, Dependency Injection, MVVM, Binding
Stars: ✭ 510 (-78.49%)
Mutual labels:  rxswift, mvvm, mvvm-architecture
Xaml Code Experiences
A collection of the experiences I have collected during days of Xamarin and Wpf, while following the MVVM design pattern.
Stars: ✭ 114 (-95.19%)
Mutual labels:  mvvm, mvvm-architecture
Rxgithub
An example of MVVM using RxSwift and Swinject (DI)
Stars: ✭ 109 (-95.4%)
Mutual labels:  rxswift, mvvm
Ios
A sample project demonstrating MVVM, RxSwift, Coordinator Pattern, Dependency Injection
Stars: ✭ 49 (-97.93%)
Mutual labels:  rxswift, mvvm
Mvvm Kotlin Android Architecture
MVVM + Kotlin + Retrofit2 + Hilt + Coroutines + Kotlin Flow + mockK + Espresso + Junit5
Stars: ✭ 1,014 (-57.23%)
Mutual labels:  mvvm, mvvm-architecture
Mvvmc Splitviewcontroller
Example project with UITabBarController inside UISplitViewController using RxSwift and MVVM-C architecture.
Stars: ✭ 45 (-98.1%)
Mutual labels:  rxswift, mvvm
Disneymotions
🦁 A Disney app using transformation motions based on MVVM (ViewModel, Coroutines, Flow, LiveData, Room, Repository, Koin) architecture.
Stars: ✭ 1,105 (-53.4%)
Mutual labels:  mvvm, mvvm-architecture
Moviefinderusingmvvm Android
🔥 MVVM + Clean Architecture + Best Practices | 🍿Movie Finder is a sample Android application 📱to search movies using OMDb API which is built to demonstrate use of Modern Android development tools - (Kotlin, Coroutines, Kodein, Architecture Components, MVVM, Retrofit, Gson, Material Components) 😊😊😉
Stars: ✭ 66 (-97.22%)
Mutual labels:  mvvm, mvvm-architecture

常见问题

https://day.app/2021/06/barkfaq/

问题反馈 Telegram 群

Bark反馈群

发送推送

  1. 打开APP,复制测试URL

  1. 修改内容,请求这个URL
可以发 get 或者 post 请求 ,请求成功会立即收到推送 

URL 组成: 第一个部分是 key , 之后有三个匹配 
/:key/:body 
/:key/:title/:body 
/:key/:category/:title/:body 

title 推送标题 比 body 字号粗一点 
body 推送内容 换行请使用换行符 '\n'
category 另外的功能占用的字段,还没开放 忽略就行 
post 请求 参数名也是上面这些

复制推送内容

收到推送时下拉推送(或在通知中心左滑查看推送)有一个复制按钮,点击即可复制推送内容。

//将复制“验证码是9527”
https://api.day.app/yourkey/验证码是9527

携带参数 automaticallyCopy=1, 收到推送时,推送内容会自动复制到粘贴板(如发现不能自动复制,可尝试重启一下手机)

//自动复制 “验证码是9527” 到粘贴板
https://api.day.app/yourkey/验证码是9527?automaticallyCopy=1 

携带copy参数, 则上面两种复制操作,将只复制copy参数的值

//自动复制 “9527” 到粘贴板
https://api.day.app/yourkey/验证码是9527?automaticallyCopy=1&copy=9527

其他参数

  • url
// 点击推送将跳转到url的地址(发送时,URL参数需要编码)
https://api.day.app/yourkey/百度网址?url=https://www.baidu.com 
  • isArchive
// 指定是否需要保存推送信息到历史记录,1 为保存,其他值为不保存。
// 如果不指定这个参数,推送信息将按照APP内设置来决定是否保存。
https://api.day.app/yourkey/需要保存的推送?isArchive=1
  • group
// 指定推送消息分组,可在历史记录中按分组查看推送。
https://api.day.app/yourkey/需要分组的推送?group=groupName
  • icon (仅 iOS15 或以上支持)
// 指定推送消息图标
https://api.day.app/yourkey/需要自定义图标的推送?icon=http://day.app/assets/images/avatar.jpg
  • 时效性通知
// 设置时效性通知
https://api.day.app/yourkey/时效性通知?level=timeSensitive

// 可选参数值
// active:不设置时的默认值,系统会立即亮屏显示通知。
// timeSensitive:时效性通知,可在专注状态下显示通知。
// passive:仅将通知添加到通知列表,不会亮屏提醒

后端代码

bark-server

将后端代码部署在你自己的服务器上。支持Docker

Chrome 插件

Bark-Chrome-Extension

这是一款chrome插件能帮你方便地把网页上的文本或者网址推送到Bark手机端。

效果展示

在线定时发送

https://api.ihint.me/bark.html

Windows推送客户端

https://github.com/HsuDan/BarkHelper

跨平台的命令行应用

https://github.com/JasonkayZK/bark-cli

Quicker 动作

使用 Quicker 软件在 Windows 上将选中文字一键推送到iPhone,支持打开URL和自动复制推送内容 https://getquicker.net/Sharedaction?code=e927d844-d212-4428-758d-08d69de12a3b

Bark for Wox

https://github.com/Zeroto521/Wox.Plugin.Bark

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].