- 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
| -- | |
| -- Complete review of special authorities granted to user profiles | |
| -- | |
| select user_name, ordinal_position, ltrim(element) as special_authority | |
| from qsys2.user_info, table ( | |
| systools.split(rtrim(special_authorities), ' ') | |
| ) b | |
| where user_name not in (select authorization_name | |
| from qsys2.authids | |
| where authorization_attr = 'GROUP'); |
| # AWS CLI required. | |
| # s3api: http://docs.aws.amazon.com/cli/latest/reference/s3api/put-bucket-lifecycle-configuration.html | |
| aws s3api put-bucket-lifecycle-configuration --bucket <bucket-name> --lifecycle-configuration file://<path-to-policy-json> | |
| # Policy file example | |
| # { | |
| # "Rules": [ | |
| # { | |
| # "ID": "Expires in 120 DAYS", | |
| # "Prefix": "", |
| <? | |
| class CurlResponse | |
| { | |
| var $headers = array(); | |
| function CurlResponse () {} | |
| function parse_header ($handle, $header) |