- user_id -
user/:uid - feed_id -
feed/:feed_uri - category_id -
:user_id/category/:category(special category:global.all,global.uncategorized) - tag_id -
:user_id/tag/:tag(special tag:global.saved)
http://cloud.feedly.com/:version/:api
| <?php namespace App\Services; | |
| use GuzzleHttp\Client; | |
| class OneSignal { | |
| const API_URL_ADD_PLAYER = 'https://onesignal.com/api/v1/players'; | |
| const API_URL_CREATE_PUSH = 'https://onesignal.com/api/v1/notifications'; | |
| const DEVICE_TYPE_IOS = 0; | |
| const DEVICE_TYPE_ANDROID = 1; |
| #To Get List of Hardware | |
| sudo networksetup -listallhardwareports | |
| #To Disable IPv6 on Wifi Adapter | |
| sudo networksetup -setv6off wi-fi | |
| #To Disable IPv6 on Built-in Ethernet Adapter | |
| sudo networksetup -setv6off Ethernet |