--- :examples: :get_profile: ! "\n```text\nGET /profile HTTP/1.1\nAccept: application/vnd.tent.v0+json\n```\n\n```text\nHTTP/1.1 200 OK\nContent-Type: application/vnd.tent.v0+json\nContent-Length: 472\n```\n\n```json\n{\n \ \"https://tent.io/types/info/basic/v0.1.0\": {\n \"name\": \"The Tentity\",\n \ \"avatar_url\": \"http://example.org/avatar.jpg\",\n \"birthdate\": \"2012-08-23\",\n \ \"location\": \"The Internet\",\n \"gender\": \"Unknown\",\n \"bio\": \"Itaque et quo in.\",\n \"permissions\": {\n \"public\": true\n }\n \ },\n \"https://tent.io/types/info/core/v0.1.0\": {\n \"licenses\": [\n \"http://creativecommons.org/licenses/by/3.0/\"\n \ ],\n \"entity\": \"https://example.org\",\n \"servers\": [\n \"https://tent.example.com\",\n \ \"http://eqt5g4fuenphqinx.onion/\"\n ],\n \"permissions\": {\n \"public\": true\n }\n }\n}\n```\n" :create_app: ! "\n```text\nPOST /apps HTTP/1.1\nContent-Type: application/vnd.tent.v0+json\nAccept: application/vnd.tent.v0+json\n```\n\n```json\n{\n \"name\": \"FooApp\",\n \"description\": \"Does amazing foos with your data\",\n \"url\": \"http://example.com\",\n \"icon\": \"http://example.com/icon.png\",\n \"redirect_uris\": [\n \"https://app.example.com/tent/callback\"\n \ ],\n \"scopes\": {\n \"write_profile\": \"Uses an app profile section to describe foos\",\n \"read_followings\": \"Calculates foos based on your followings\"\n \ }\n}\n```\n\n```text\nHTTP/1.1 200 OK\nContent-Type: application/vnd.tent.v0+json\nContent-Length: 459\n```\n\n```json\n{\n \"name\": \"FooApp\",\n \"description\": \"Does amazing foos with your data\",\n \"url\": \"http://example.com\",\n \"icon\": \"http://example.com/icon.png\",\n \ \"redirect_uris\": [\n \"https://app.example.com/tent/callback\"\n ],\n \ \"scopes\": {\n \"write_profile\": \"Uses an app profile section to describe foos\",\n \"read_followings\": \"Calculates foos based on your followings\"\n \ },\n \"id\": \"tn2xr6\",\n \"mac_key_id\": \"a:8c0fd3fe\",\n \"mac_key\": \"807dd5c0e9334be90bc6dd9f915b23dd\",\n \"mac_algorithm\": \"hmac-sha-256\",\n \ \"authorizations\": [\n\n ]\n}\n```\n" :app_auth: ! "\n```text\nPOST /apps/tn2xr6/authorizations HTTP/1.1\nContent-Type: application/vnd.tent.v0+json\nAccept: application/vnd.tent.v0+json\nAuthorization: MAC id=\"a:8c0fd3fe\", ts=\"1348254370\", nonce=\"5805c1\", mac=\"H5rBl0yQPVNxniC1YL88efIWE8P+atjKUrUca3rHZik=\"\n```\n\n```json\n{\n \ \"code\": \"02d86ef5541a94a83cea9c52b91c8a2a\",\n \"token_type\": \"mac\"\n}\n```\n\n```text\nHTTP/1.1 200 OK\nContent-Type: application/vnd.tent.v0+json\nContent-Length: 124\n```\n\n```json\n{\n \ \"access_token\": \"u:20703d4e\",\n \"mac_key\": \"6896762de4bfbe9b92d7e9a168f4967e\",\n \ \"mac_algorithm\": \"hmac-sha-256\",\n \"token_type\": \"mac\"\n}\n```\n" :create_following: ! "\n```text\nPOST /followings HTTP/1.1\nContent-Type: application/vnd.tent.v0+json\nAccept: application/vnd.tent.v0+json\nAuthorization: MAC id=\"u:20703d4e\", ts=\"1348254370\", nonce=\"83cb09\", mac=\"L76oncvqUqqgcj0W7MamfnDOBHHR3NxqQWUfpbHBHxI=\"\n```\n\n```json\n{\n \ \"entity\": \"https://example.org\"\n}\n```\n\n```text\nHTTP/1.1 200 OK\nContent-Type: application/vnd.tent.v0+json\nContent-Length: 680\n```\n\n```json\n{\n \"remote_id\": \"cn6kss\",\n \"entity\": \"https://example.org\",\n \"permissions\": {\n \"groups\": [\n\n ],\n \"entities\": {\n },\n \"public\": true\n },\n \"id\": \"bixfmf\",\n \"created_at\": 1348254370,\n \"updated_at\": 1348254370,\n \"groups\": [\n\n ],\n \"profile\": {\n \"https://tent.io/types/info/basic/v0.1.0\": {\n \"name\": \"The Tentity\",\n \"avatar_url\": \"http://example.org/avatar.jpg\",\n \ \"birthdate\": \"2012-08-23\",\n \"location\": \"The Internet\",\n \ \"gender\": \"Unknown\",\n \"bio\": \"Itaque et quo in.\",\n \"permissions\": {\n \"public\": true\n }\n },\n \"https://tent.io/types/info/core/v0.1.0\": {\n \"licenses\": [\n \"http://creativecommons.org/licenses/by/3.0/\"\n \ ],\n \"entity\": \"https://example.org\",\n \"servers\": [\n \"https://tent.example.com\",\n \ \"http://eqt5g4fuenphqinx.onion/\"\n ],\n \"permissions\": {\n \ \"public\": true\n }\n }\n },\n \"licenses\": [\n\n ]\n}\n```\n" :create_follower: ! "\n```text\nPOST /followers HTTP/1.1\nContent-Type: application/vnd.tent.v0+json\nAccept: application/vnd.tent.v0+json\n```\n\n```json\n{\n \"entity\": \"https://example.org\",\n \ \"types\": [\n \"all\"\n ],\n \"notification_path\": \"notifications/bixfmf\",\n \ \"licenses\": [\n \"http://creativecommons.org/licenses/by/3.0/\"\n ]\n}\n```\n\n```text\nHTTP/1.1 200 OK\nContent-Type: application/vnd.tent.v0+json\nContent-Length: 253\n```\n\n```json\n{\n \ \"entity\": \"https://example.org\",\n \"permissions\": {\n \"public\": true\n },\n \"id\": \"usabe9\",\n \"mac_key_id\": \"s:5c5f46c7\",\n \"mac_key\": \"604ef5eb15e19200c394ae49d48ec78b\",\n \"mac_algorithm\": \"hmac-sha-256\",\n \ \"licenses\": [\n \"http://creativecommons.org/licenses/by/3.0/\"\n ],\n \ \"types\": [\n \"all\"\n ]\n}\n```\n" :get_follower: ! "\n```text\nGET /followers/usabe9 HTTP/1.1\nAccept: application/vnd.tent.v0+json\nAuthorization: MAC id=\"s:5c5f46c7\", ts=\"1348254370\", nonce=\"b62efe\", mac=\"hkP7B3CVFgodI3RHzdvrZqXr4mxTw5VVI+AAp4/fUPk=\"\n```\n\n```text\nHTTP/1.1 200 OK\nContent-Type: application/vnd.tent.v0+json\nLast-Modified: Fri, 21 Sep 2012 19:06:10 GMT\nCache-Control: public\nContent-Length: 151\n```\n\n```json\n{\n \ \"entity\": \"https://example.org\",\n \"permissions\": {\n \"public\": true\n },\n \"id\": \"usabe9\",\n \"licenses\": [\n \"http://creativecommons.org/licenses/by/3.0/\"\n \ ],\n \"types\": [\n \"all\"\n ]\n}\n```\n" :update_follower: ! "\n```text\nPUT /followers/usabe9 HTTP/1.1\nContent-Type: application/vnd.tent.v0+json\nAccept: application/vnd.tent.v0+json\nAuthorization: MAC id=\"s:5c5f46c7\", ts=\"1348254370\", nonce=\"79617e\", mac=\"Tv62wF1kkq68M2MrHYEoVvj1NsBn3/jgRWYjOVtcC4g=\"\n```\n\n```json\n{\n \ \"entity\": \"https://example.org\",\n \"licenses\": [\n \"http://creativecommons.org/licenses/by/3.0/\"\n \ ],\n \"types\": [\n \"https://tent.io/types/post/essay/v0.1.0#full\"\n ]\n}\n```\n\n```text\nHTTP/1.1 200 OK\nContent-Type: application/vnd.tent.v0+json\nContent-Length: 192\n```\n\n```json\n{\n \ \"entity\": \"https://example.org\",\n \"permissions\": {\n \"public\": true\n },\n \"id\": \"usabe9\",\n \"licenses\": [\n \"http://creativecommons.org/licenses/by/3.0/\"\n \ ],\n \"types\": [\n \"https://tent.io/types/post/essay/v0.1.0#full\"\n ]\n}\n```\n" :get_app: ! "\n```text\nGET /apps/tn2xr6 HTTP/1.1\nAccept: application/vnd.tent.v0+json\nAuthorization: MAC id=\"a:8c0fd3fe\", ts=\"1348254370\", nonce=\"944af9\", mac=\"ceUVUgcJSDD/JlHNlY7ThFkuEwk8Mk9YXhTA1BCZ87Y=\"\n```\n\n```text\nHTTP/1.1 200 OK\nContent-Type: application/vnd.tent.v0+json\nLast-Modified: Fri, 21 Sep 2012 19:06:10 GMT\nContent-Length: 853\n```\n\n```json\n{\n \"name\": \"FooApp\",\n \ \"description\": \"Does amazing foos with your data\",\n \"url\": \"http://example.com\",\n \ \"icon\": \"http://example.com/icon.png\",\n \"redirect_uris\": [\n \"https://app.example.com/tent/callback\"\n \ ],\n \"scopes\": {\n \"write_profile\": \"Uses an app profile section to describe foos\",\n \"read_followings\": \"Calculates foos based on your followings\"\n \ },\n \"id\": \"tn2xr6\",\n \"authorizations\": [\n {\n \"post_types\": [\n \"https://tent.io/types/post/status/v0.1.0\",\n \"https://tent.io/types/post/photo/v0.1.0\"\n \ ],\n \"profile_info_types\": [\n \"https://tent.io/types/info/basic/v0.1.0\"\n \ ],\n \"scopes\": [\n \"read_posts\",\n \"write_posts\",\n \ \"import_posts\",\n \"read_profile\",\n \"write_profile\",\n \ \"read_followers\",\n \"write_followers\",\n \"read_followings\",\n \ \"write_followings\",\n \"read_groups\",\n \"write_groups\",\n \ \"read_permissions\",\n \"write_permissions\",\n \"read_apps\",\n \ \"write_apps\",\n \"follow_ui\",\n \"read_secrets\",\n \"write_secrets\"\n \ ],\n \"notification_url\": null,\n \"id\": \"k7blhc\"\n }\n \ ]\n}\n```\n" :update_app: ! "\n```text\nPUT /apps/tn2xr6 HTTP/1.1\nContent-Type: application/vnd.tent.v0+json\nAccept: application/vnd.tent.v0+json\nAuthorization: MAC id=\"a:8c0fd3fe\", ts=\"1348254370\", nonce=\"d5f431\", mac=\"0vzJqgwBiMclNlq9IrshOPjhihlgU8ZVm+ZJdSnBNjQ=\"\n```\n\n```json\n{\n \ \"name\": \"FooApp\",\n \"description\": \"Does amazing foos with your data\",\n \ \"url\": \"http://example.com\",\n \"icon\": \"http://example.com/icon.png\",\n \ \"redirect_uris\": [\n \"https://app.example.com/tent/callback\"\n ],\n \ \"scopes\": {\n \"write_profile\": \"Uses an app profile section to describe foos\",\n \"read_followings\": \"Calculates foos based on your followings\",\n \ \"write_following\": \"Follow new users when you click\"\n }\n}\n```\n\n```text\nHTTP/1.1 200 OK\nContent-Type: application/vnd.tent.v0+json\nContent-Length: 905\n```\n\n```json\n{\n \ \"name\": \"FooApp\",\n \"description\": \"Does amazing foos with your data\",\n \ \"url\": \"http://example.com\",\n \"icon\": \"http://example.com/icon.png\",\n \ \"redirect_uris\": [\n \"https://app.example.com/tent/callback\"\n ],\n \ \"scopes\": {\n \"write_profile\": \"Uses an app profile section to describe foos\",\n \"read_followings\": \"Calculates foos based on your followings\",\n \ \"write_following\": \"Follow new users when you click\"\n },\n \"id\": \"tn2xr6\",\n \"authorizations\": [\n {\n \"post_types\": [\n \"https://tent.io/types/post/status/v0.1.0\",\n \ \"https://tent.io/types/post/photo/v0.1.0\"\n ],\n \"profile_info_types\": [\n \"https://tent.io/types/info/basic/v0.1.0\"\n ],\n \"scopes\": [\n \"read_posts\",\n \"write_posts\",\n \"import_posts\",\n \ \"read_profile\",\n \"write_profile\",\n \"read_followers\",\n \ \"write_followers\",\n \"read_followings\",\n \"write_followings\",\n \ \"read_groups\",\n \"write_groups\",\n \"read_permissions\",\n \ \"write_permissions\",\n \"read_apps\",\n \"write_apps\",\n \ \"follow_ui\",\n \"read_secrets\",\n \"write_secrets\"\n \ ],\n \"notification_url\": null,\n \"id\": \"k7blhc\"\n }\n \ ]\n}\n```\n" :discovery: ! ' ```text HEAD / HTTP/1.1 Accept: application/vnd.tent.v0+json ``` ```text HTTP/1.1 200 OK Content-Type: text/html Link: ; rel="https://tent.io/rels/profile" ``` ' :update_profile: ! "\n```text\nPUT /profile/https%3A%2F%2Ftent.io%2Ftypes%2Finfo%2Fbasic%2Fv0.1.0 HTTP/1.1\nContent-Type: application/vnd.tent.v0+json\nAccept: application/vnd.tent.v0+json\nAuthorization: MAC id=\"u:20703d4e\", ts=\"1348254370\", nonce=\"37e5b5\", mac=\"SJFxkqCCy/pgIssl8d0RWGhCHEfqAvyDPmz8nbY1m1Q=\"\n```\n\n```json\n{\n \ \"name\": \"The Tentity\",\n \"avatar_url\": \"http://example.org/avatar.jpg\",\n \ \"birthdate\": \"2012-08-23\",\n \"location\": \"The Internet\",\n \"gender\": \"Unknown\",\n \"bio\": \"Dignissimos autem pariatur deserunt voluptatem sed incidunt occaecati.\"\n}\n```\n\n```text\nHTTP/1.1 200 OK\nContent-Type: application/vnd.tent.v0+json\nContent-Length: 577\n```\n\n```json\n{\n \"https://tent.io/types/info/core/v0.1.0\": {\n \"licenses\": [\n \"http://creativecommons.org/licenses/by/3.0/\"\n ],\n \"entity\": \"https://example.org\",\n \"servers\": [\n \"https://tent.example.com\",\n \ \"http://eqt5g4fuenphqinx.onion/\"\n ],\n \"permissions\": {\n \"groups\": [\n\n ],\n \"entities\": {\n },\n \"public\": true\n }\n \ },\n \"https://tent.io/types/info/basic/v0.1.0\": {\n \"name\": \"The Tentity\",\n \ \"avatar_url\": \"http://example.org/avatar.jpg\",\n \"birthdate\": \"2012-08-23\",\n \ \"location\": \"The Internet\",\n \"gender\": \"Unknown\",\n \"bio\": \"Dignissimos autem pariatur deserunt voluptatem sed incidunt occaecati.\",\n \ \"permissions\": {\n \"groups\": [\n\n ],\n \"entities\": {\n \ },\n \"public\": null\n }\n }\n}\n```\n" :create_post: ! "\n```text\nPOST /posts HTTP/1.1\nContent-Type: application/vnd.tent.v0+json\nAccept: application/vnd.tent.v0+json\nAuthorization: MAC id=\"u:20703d4e\", ts=\"1348254370\", nonce=\"6f95e7\", mac=\"1nw6hF5k3AbTl6BL8MzJAza8ba/6cma1lpqcUBxE8G4=\"\n```\n\n```json\n{\n \ \"type\": \"https://tent.io/types/post/status/v0.1.0\",\n \"published_at\": 1348254370,\n \"permissions\": {\n \"public\": true\n },\n \"licenses\": [\n \"http://creativecommons.org/licenses/by/3.0/\"\n ],\n \"content\": {\n \ \"text\": \"Just landed.\",\n \"location\": {\n \"type\": \"Point\",\n \ \"coordinates\": [\n 50.923878,\n 4.028605\n ]\n }\n \ }\n}\n```\n\n```text\nHTTP/1.1 200 OK\nContent-Type: application/vnd.tent.v0+json\nContent-Length: 477\n```\n\n```json\n{\n \"entity\": \"https://example.org\",\n \"licenses\": [\n \"http://creativecommons.org/licenses/by/3.0/\"\n ],\n \"content\": {\n \ \"text\": \"Just landed.\",\n \"location\": {\n \"type\": \"Point\",\n \ \"coordinates\": [\n 50.923878,\n 4.028605\n ]\n }\n \ },\n \"published_at\": 1348254370,\n \"permissions\": {\n \"groups\": [\n\n \ ],\n \"entities\": {\n },\n \"public\": true\n },\n \"id\": \"4y8l9i\",\n \ \"updated_at\": 1348254370,\n \"received_at\": 1348254370,\n \"attachments\": [\n\n ],\n \"type\": \"https://tent.io/types/post/status/v0.1.0\",\n \"version\": 1,\n \"app\": {\n \"url\": \"http://example.com\",\n \"name\": \"FooApp\"\n \ },\n \"mentions\": [\n\n ]\n}\n```\n" :create_post_with_attachments: ! "\n```text\nPOST /posts HTTP/1.1\nContent-Type: multipart/form-data;boundary=-----------TentAttachment\nAccept: application/vnd.tent.v0+json\nAuthorization: MAC id=\"u:20703d4e\", ts=\"1348254370\", nonce=\"a50bbf\", mac=\"K0ihMZQroeEcIGaoNuH+2TeX79bIOAqtrc9j4tOuiec=\"\n```\n\n```text\n-------------TentAttachment\r\nContent-Disposition: form-data; name=\"post\"; filename=\"post.json\"\r\nContent-Length: 206\r\nContent-Type: application/vnd.tent.v0+json\r\nContent-Transfer-Encoding: binary\r\n\r\n{\"type\":\"https://tent.io/types/post/photo/v0.1.0\",\"published_at\":1348254370,\"permissions\":{\"public\":true},\"licenses\":[\"http://creativecommons.org/licenses/by/3.0/\"],\"content\":{\"caption\":\"Some fake photos\"}}\r\n-------------TentAttachment\r\nContent-Disposition: form-data; name=\"photos[0]\"; filename=\"fake_photo1.jpg\"\r\nContent-Length: 26\r\nContent-Type: image/jpeg\r\nContent-Transfer-Encoding: binary\r\n\r\nPhoto 1 data would go here\r\n-------------TentAttachment\r\nContent-Disposition: form-data; name=\"photos[1]\"; filename=\"fake_photo2.jpg\"\r\nContent-Length: 26\r\nContent-Type: image/jpeg\r\nContent-Transfer-Encoding: binary\r\n\r\nPhoto 2 data would go here\r\n-------------TentAttachment--\r\n\r\n\n```\n\n```text\nHTTP/1.1 200 OK\nContent-Type: application/vnd.tent.v0+json\nContent-Length: 573\n```\n\n```json\n{\n \ \"entity\": \"https://example.org\",\n \"licenses\": [\n \"http://creativecommons.org/licenses/by/3.0/\"\n \ ],\n \"content\": {\n \"caption\": \"Some fake photos\"\n },\n \"published_at\": 1348254370,\n \"permissions\": {\n \"groups\": [\n\n ],\n \"entities\": {\n },\n \"public\": true\n },\n \"id\": \"gtv2wv\",\n \"updated_at\": 1348254370,\n \"received_at\": 1348254370,\n \"attachments\": [\n {\n \"type\": \"image/jpeg\",\n \"category\": \"photos\",\n \"name\": \"fake_photo1.jpg\",\n \ \"size\": 26\n },\n {\n \"type\": \"image/jpeg\",\n \"category\": \"photos\",\n \"name\": \"fake_photo2.jpg\",\n \"size\": 26\n }\n \ ],\n \"type\": \"https://tent.io/types/post/photo/v0.1.0\",\n \"version\": 1,\n \"app\": {\n \"url\": \"http://example.com\",\n \"name\": \"FooApp\"\n \ },\n \"mentions\": [\n\n ]\n}\n```\n" :get_post_attachment: ! ' ```text GET /posts/gtv2wv/attachments/fake_photo2.jpg HTTP/1.1 Accept: image/jpeg Authorization: MAC id="u:20703d4e", ts="1348254370", nonce="2cae5f", mac="zYEb0sNlnSy72BTyw7ALLLJV5LVlTDHuxBdgXxu6B44=" ``` ```text HTTP/1.1 200 OK Content-Type: image/jpeg Content-Length: 26 ``` ```text Photo 2 data would go here ``` ' :get_followings: ! "\n```text\nGET /followings HTTP/1.1\nAccept: application/vnd.tent.v0+json\nAuthorization: MAC id=\"u:20703d4e\", ts=\"1348254370\", nonce=\"aaa18e\", mac=\"SAGK3xgGKrQSTDb4viFm/tZIUScQOdX7I32fekwTtDY=\"\n```\n\n```text\nHTTP/1.1 200 OK\nContent-Type: application/vnd.tent.v0+json\nLast-Modified: Fri, 21 Sep 2012 19:06:10 GMT\nCache-Control: private\nContent-Length: 682\n```\n\n```json\n[\n \ {\n \"remote_id\": \"cn6kss\",\n \"entity\": \"https://example.org\",\n \ \"permissions\": {\n \"groups\": [\n\n ],\n \"entities\": {\n \ },\n \"public\": true\n },\n \"id\": \"bixfmf\",\n \"created_at\": 1348254370,\n \"updated_at\": 1348254370,\n \"groups\": [\n\n ],\n \"profile\": {\n \"https://tent.io/types/info/basic/v0.1.0\": {\n \"name\": \"The Tentity\",\n \"avatar_url\": \"http://example.org/avatar.jpg\",\n \"birthdate\": \"2012-08-23\",\n \"location\": \"The Internet\",\n \"gender\": \"Unknown\",\n \"bio\": \"Itaque et quo in.\",\n \"permissions\": {\n \"public\": true\n }\n },\n \"https://tent.io/types/info/core/v0.1.0\": {\n \"licenses\": [\n \"http://creativecommons.org/licenses/by/3.0/\"\n \ ],\n \"entity\": \"https://example.org\",\n \"servers\": [\n \"https://tent.example.com\",\n \"http://eqt5g4fuenphqinx.onion/\"\n \ ],\n \"permissions\": {\n \"public\": true\n }\n \ }\n },\n \"licenses\": [\n\n ]\n }\n]\n```\n" :get_following: ! "\n```text\nGET /followings/bixfmf HTTP/1.1\nAccept: application/vnd.tent.v0+json\nAuthorization: MAC id=\"u:20703d4e\", ts=\"1348254370\", nonce=\"102364\", mac=\"74Bj3HN8KCFfuxg/Mm8KMGE7Vk1GY0ELltLbltvSX3M=\"\n```\n\n```text\nHTTP/1.1 200 OK\nContent-Type: application/vnd.tent.v0+json\nLast-Modified: Fri, 21 Sep 2012 19:06:10 GMT\nCache-Control: public\nContent-Length: 680\n```\n\n```json\n{\n \ \"remote_id\": \"cn6kss\",\n \"entity\": \"https://example.org\",\n \"permissions\": {\n \"groups\": [\n\n ],\n \"entities\": {\n },\n \"public\": true\n \ },\n \"id\": \"bixfmf\",\n \"created_at\": 1348254370,\n \"updated_at\": 1348254370,\n \"groups\": [\n\n ],\n \"profile\": {\n \"https://tent.io/types/info/basic/v0.1.0\": {\n \"name\": \"The Tentity\",\n \"avatar_url\": \"http://example.org/avatar.jpg\",\n \ \"birthdate\": \"2012-08-23\",\n \"location\": \"The Internet\",\n \ \"gender\": \"Unknown\",\n \"bio\": \"Itaque et quo in.\",\n \"permissions\": {\n \"public\": true\n }\n },\n \"https://tent.io/types/info/core/v0.1.0\": {\n \"licenses\": [\n \"http://creativecommons.org/licenses/by/3.0/\"\n \ ],\n \"entity\": \"https://example.org\",\n \"servers\": [\n \"https://tent.example.com\",\n \ \"http://eqt5g4fuenphqinx.onion/\"\n ],\n \"permissions\": {\n \ \"public\": true\n }\n }\n },\n \"licenses\": [\n\n ]\n}\n```\n" :delete_following: ! ' ```text DELETE /followings/bixfmf HTTP/1.1 Accept: application/vnd.tent.v0+json Authorization: MAC id="u:20703d4e", ts="1348254370", nonce="aaca85", mac="HbEDu3YhVuMldwl6xQBrfzKec7ZQ6uKb91HXSj7q1fM=" ``` ```text HTTP/1.1 200 OK Content-Type: text/html Content-Length: 0 ``` ' :get_followers: ! "\n```text\nGET /followers HTTP/1.1\nAccept: application/vnd.tent.v0+json\nAuthorization: MAC id=\"u:20703d4e\", ts=\"1348254370\", nonce=\"b02e01\", mac=\"sNL1PreKVm6yrmV61k7GyKBTrUmIxlGcLm/ktBXF/Lg=\"\n```\n\n```text\nHTTP/1.1 200 OK\nContent-Type: application/vnd.tent.v0+json\nLast-Modified: Fri, 21 Sep 2012 19:06:10 GMT\nCache-Control: public\nContent-Length: 763\n```\n\n```json\n[\n \ {\n \"entity\": \"https://example.org\",\n \"permissions\": {\n \"groups\": [\n\n ],\n \"entities\": {\n },\n \"public\": true\n },\n \ \"id\": \"usabe9\",\n \"created_at\": 1348254370,\n \"updated_at\": 1348254370,\n \"groups\": [\n\n ],\n \"profile\": {\n \"https://tent.io/types/info/basic/v0.1.0\": {\n \"name\": \"The Tentity\",\n \"avatar_url\": \"http://example.org/avatar.jpg\",\n \ \"birthdate\": \"2012-08-23\",\n \"location\": \"The Internet\",\n \ \"gender\": \"Unknown\",\n \"bio\": \"Itaque et quo in.\",\n \"permissions\": {\n \"public\": true\n }\n },\n \"https://tent.io/types/info/core/v0.1.0\": {\n \"licenses\": [\n \"http://creativecommons.org/licenses/by/3.0/\"\n \ ],\n \"entity\": \"https://example.org\",\n \"servers\": [\n \"https://tent.example.com\",\n \"http://eqt5g4fuenphqinx.onion/\"\n \ ],\n \"permissions\": {\n \"public\": true\n }\n \ }\n },\n \"licenses\": [\n \"http://creativecommons.org/licenses/by/3.0/\"\n \ ],\n \"types\": [\n \"https://tent.io/types/post/essay/v0.1.0#full\"\n \ ]\n }\n]\n```\n" :get_posts: ! "\n```text\nGET /posts HTTP/1.1\nAccept: application/vnd.tent.v0+json\nAuthorization: MAC id=\"u:20703d4e\", ts=\"1348254370\", nonce=\"2f3aa4\", mac=\"HLBruJQiHag2H20LPF9yxWx0TCZgtsWz+RomT2j3MNQ=\"\n```\n\n```text\nHTTP/1.1 200 OK\nContent-Type: application/vnd.tent.v0+json\nLast-Modified: Fri, 21 Sep 2012 19:06:10 GMT\nCache-Control: private\nContent-Length: 1053\n```\n\n```json\n[\n \ {\n \"entity\": \"https://example.org\",\n \"licenses\": [\n \"http://creativecommons.org/licenses/by/3.0/\"\n \ ],\n \"content\": {\n \"text\": \"Just landed.\",\n \"location\": {\n \"type\": \"Point\",\n \"coordinates\": [\n 50.923878,\n \ 4.028605\n ]\n }\n },\n \"published_at\": 1348254370,\n \ \"permissions\": {\n \"groups\": [\n\n ],\n \"entities\": {\n \ },\n \"public\": true\n },\n \"id\": \"4y8l9i\",\n \"updated_at\": 1348254370,\n \"received_at\": 1348254370,\n \"attachments\": [\n\n ],\n \ \"type\": \"https://tent.io/types/post/status/v0.1.0\",\n \"version\": 1,\n \"app\": {\n \"url\": \"http://example.com\",\n \"name\": \"FooApp\"\n \ },\n \"mentions\": [\n\n ]\n },\n {\n \"entity\": \"https://example.org\",\n \ \"licenses\": [\n \"http://creativecommons.org/licenses/by/3.0/\"\n ],\n \ \"content\": {\n \"caption\": \"Some fake photos\"\n },\n \"published_at\": 1348254370,\n \"permissions\": {\n \"groups\": [\n\n ],\n \"entities\": {\n },\n \"public\": true\n },\n \"id\": \"gtv2wv\",\n \"updated_at\": 1348254370,\n \"received_at\": 1348254370,\n \"attachments\": [\n {\n \ \"type\": \"image/jpeg\",\n \"category\": \"photos\",\n \"name\": \"fake_photo1.jpg\",\n \"size\": 26\n },\n {\n \"type\": \"image/jpeg\",\n \"category\": \"photos\",\n \"name\": \"fake_photo2.jpg\",\n \ \"size\": 26\n }\n ],\n \"type\": \"https://tent.io/types/post/photo/v0.1.0\",\n \ \"version\": 1,\n \"app\": {\n \"url\": \"http://example.com\",\n \ \"name\": \"FooApp\"\n },\n \"mentions\": [\n\n ]\n }\n]\n```\n" :get_post: ! "\n```text\nGET /posts/4y8l9i HTTP/1.1\nAccept: application/vnd.tent.v0+json\nAuthorization: MAC id=\"u:20703d4e\", ts=\"1348254370\", nonce=\"d465ba\", mac=\"RBcQ9Jrk5xuqEKE1OB4l+7Z8m9TZC64YZ3TjSJYfC2E=\"\n```\n\n```text\nHTTP/1.1 200 OK\nContent-Type: application/vnd.tent.v0+json\nLast-Modified: Fri, 21 Sep 2012 19:06:10 GMT\nCache-Control: public\nContent-Length: 477\n```\n\n```json\n{\n \ \"entity\": \"https://example.org\",\n \"licenses\": [\n \"http://creativecommons.org/licenses/by/3.0/\"\n \ ],\n \"content\": {\n \"text\": \"Just landed.\",\n \"location\": {\n \ \"type\": \"Point\",\n \"coordinates\": [\n 50.923878,\n 4.028605\n \ ]\n }\n },\n \"published_at\": 1348254370,\n \"permissions\": {\n \ \"groups\": [\n\n ],\n \"entities\": {\n },\n \"public\": true\n \ },\n \"id\": \"4y8l9i\",\n \"updated_at\": 1348254370,\n \"received_at\": 1348254370,\n \"attachments\": [\n\n ],\n \"type\": \"https://tent.io/types/post/status/v0.1.0\",\n \ \"version\": 1,\n \"app\": {\n \"url\": \"http://example.com\",\n \"name\": \"FooApp\"\n },\n \"mentions\": [\n\n ]\n}\n```\n" :follower_get_post: ! "\n```text\nGET /posts/4y8l9i HTTP/1.1\nAccept: application/vnd.tent.v0+json\nAuthorization: MAC id=\"s:5c5f46c7\", ts=\"1348254370\", nonce=\"f9d8a5\", mac=\"6rIzIf+AFiCguBGNINohQlbVraBR5wUrSSthf0yyaRA=\"\n```\n\n```text\nHTTP/1.1 200 OK\nContent-Type: application/vnd.tent.v0+json\nLast-Modified: Fri, 21 Sep 2012 19:06:10 GMT\nCache-Control: public\nContent-Length: 402\n```\n\n```json\n{\n \ \"entity\": \"https://example.org\",\n \"licenses\": [\n \"http://creativecommons.org/licenses/by/3.0/\"\n \ ],\n \"content\": {\n \"text\": \"Just landed.\",\n \"location\": {\n \ \"type\": \"Point\",\n \"coordinates\": [\n 50.923878,\n 4.028605\n \ ]\n }\n },\n \"published_at\": 1348254370,\n \"permissions\": {\n \ \"public\": true\n },\n \"id\": \"4y8l9i\",\n \"attachments\": [\n\n ],\n \ \"type\": \"https://tent.io/types/post/status/v0.1.0\",\n \"version\": 1,\n \ \"app\": {\n \"url\": \"http://example.com\",\n \"name\": \"FooApp\"\n \ },\n \"mentions\": [\n\n ]\n}\n```\n" :follower_get_posts: ! "\n```text\nGET /posts HTTP/1.1\nAccept: application/vnd.tent.v0+json\nAuthorization: MAC id=\"s:5c5f46c7\", ts=\"1348254370\", nonce=\"74eef1\", mac=\"aSgoEahMEw9L6YGUfd9lxDOTAJqrThsvijRTjDqi/3k=\"\n```\n\n```text\nHTTP/1.1 200 OK\nContent-Type: application/vnd.tent.v0+json\nLast-Modified: Fri, 21 Sep 2012 19:06:10 GMT\nCache-Control: private\nContent-Length: 903\n```\n\n```json\n[\n \ {\n \"entity\": \"https://example.org\",\n \"licenses\": [\n \"http://creativecommons.org/licenses/by/3.0/\"\n \ ],\n \"content\": {\n \"caption\": \"Some fake photos\"\n },\n \ \"published_at\": 1348254370,\n \"permissions\": {\n \"public\": true\n \ },\n \"id\": \"gtv2wv\",\n \"attachments\": [\n {\n \"type\": \"image/jpeg\",\n \"category\": \"photos\",\n \"name\": \"fake_photo1.jpg\",\n \ \"size\": 26\n },\n {\n \"type\": \"image/jpeg\",\n \"category\": \"photos\",\n \"name\": \"fake_photo2.jpg\",\n \"size\": 26\n }\n \ ],\n \"type\": \"https://tent.io/types/post/photo/v0.1.0\",\n \"version\": 1,\n \"app\": {\n \"url\": \"http://example.com\",\n \"name\": \"FooApp\"\n \ },\n \"mentions\": [\n\n ]\n },\n {\n \"entity\": \"https://example.org\",\n \ \"licenses\": [\n \"http://creativecommons.org/licenses/by/3.0/\"\n ],\n \ \"content\": {\n \"text\": \"Just landed.\",\n \"location\": {\n \ \"type\": \"Point\",\n \"coordinates\": [\n 50.923878,\n \ 4.028605\n ]\n }\n },\n \"published_at\": 1348254370,\n \ \"permissions\": {\n \"public\": true\n },\n \"id\": \"4y8l9i\",\n \ \"attachments\": [\n\n ],\n \"type\": \"https://tent.io/types/post/status/v0.1.0\",\n \ \"version\": 1,\n \"app\": {\n \"url\": \"http://example.com\",\n \ \"name\": \"FooApp\"\n },\n \"mentions\": [\n\n ]\n }\n]\n```\n" :delete_follower: ! ' ```text DELETE /followers/usabe9 HTTP/1.1 Accept: application/vnd.tent.v0+json Authorization: MAC id="s:5c5f46c7", ts="1348254370", nonce="251e42", mac="VAGfGzEyHDgvBiPjRjNzjFKh3hQC4F9EcDTuXcZiDCI=" ``` ```text HTTP/1.1 200 OK Content-Type: text/html Content-Length: 0 ``` ' :variables: :app_code: !binary |- MDJkODZlZjU1NDFhOTRhODNjZWE5YzUyYjkxYzhhMmE= :app_id: tn2xr6 :follower_id: usabe9 :post_id: 4y8l9i