test-green cassettes, 4.3

pull/419/head
halcy 2025-08-16 16:52:16 +03:00
rodzic 75af8b02c1
commit abc25a0f3e
243 zmienionych plików z 77621 dodań i 65011 usunięć

Wyświetl plik

@ -6,7 +6,7 @@ import datetime
import copy
import warnings
from mastodon.errors import MastodonAPIError, MastodonIllegalArgumentError
from mastodon.errors import MastodonAPIError, MastodonIllegalArgumentError, MastodonNotFoundError
from mastodon.compat import IMPL_HAS_BLURHASH, blurhash
from mastodon.internals import Mastodon as Internals
@ -44,14 +44,17 @@ class Mastodon(Internals):
# If we have a version >= 4.3.0 but no API version, we throw a warning that this is a Weird Implementation,
# which might help with adoption of the API versioning or at least give us a better picture of how it is going.
found_api_version = False
if "api_versions" in self.__instance():
if "mastodon" in self.__instance()["api_versions"]:
self.mastodon_api_version = int(self.__instance()["api_versions"]["mastodon"])
found_api_version = True
try:
instance_v2_info = self.instance_v2()
if "api_versions" in instance_v2_info:
if "mastodon" in instance_v2_info["api_versions"]:
self.mastodon_api_version = int(instance_v2_info["api_versions"]["mastodon"])
found_api_version = True
except MastodonNotFoundError:
pass
self.__version_check_tried = True
if not found_api_version and self.verify_minimum_version("4.3.0", cached=True):
warnings.warn("Mastodon version is detected as >= 4.3.0, but no API version found. Please report this.")
self.__version_check_tried = True
return version_str
def verify_minimum_version(self, version_str, cached=False):

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -16,7 +16,7 @@ interactions:
uri: http://localhost:3000/api/v1/accounts/verify_credentials
response:
body:
string: '{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":null,"hide_collections":null,"noindex":false,"source":{"privacy":"private","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[],"fields":[],"role":{"id":"-99","name":"","permissions":"65536","color":"","highlighted":false}}'
string: '{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":null,"hide_collections":null,"noindex":false,"source":{"privacy":"private","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[],"fields":[],"role":{"id":"-99","name":"","permissions":"65536","color":"","highlighted":false}}'
headers:
Cache-Control:
- private, no-store
@ -27,14 +27,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"342bcc17c9c3527608ac3f1ab53a23a1"
- W/"1bed31bf37d24052d7eb4a8f3787a0f1"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- sql.active_record;dur=31.36, cache_read.active_support;dur=0.05, cache_generate.active_support;dur=18.37,
cache_write.active_support;dur=0.20, instantiation.active_record;dur=52.85,
start_processing.action_controller;dur=0.01, transaction.active_record;dur=11.79,
render.active_model_serializers;dur=50.95, process_action.action_controller;dur=225.72
- sql.active_record;dur=32.19, cache_read.active_support;dur=0.09, cache_generate.active_support;dur=18.67,
cache_write.active_support;dur=0.28, instantiation.active_record;dur=36.07,
start_processing.action_controller;dur=0.01, transaction.active_record;dur=14.24,
render.active_model_serializers;dur=52.33, process_action.action_controller;dur=244.61
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -46,11 +46,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T21:55:00.796219Z'
- '2025-08-15T17:35:00.180553Z'
X-Request-Id:
- 082f66bc-f0e4-4ea7-9246-c151c26f94f9
- ce236856-c8ad-4d85-bd2b-e9bf9627a569
X-Runtime:
- '0.390157'
- '0.444817'
X-XSS-Protection:
- '0'
vary:
@ -64,7 +64,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -72,10 +72,10 @@ interactions:
User-Agent:
- tests/v311
method: GET
uri: http://localhost:3000/api/v1/accounts/113998801242326861
uri: http://localhost:3000/api/v1/accounts/115033965771926537
response:
body:
string: '{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":null,"hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]}'
string: '{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":null,"hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]}'
headers:
Cache-Control:
- private, no-store
@ -86,14 +86,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"37c45a2db9bb1bd93afb73780ea7904d"
- W/"7a2203feba91845395e318ddb11091b9"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=1.67, cache_generate.active_support;dur=2.30,
cache_write.active_support;dur=0.12, instantiation.active_record;dur=0.47,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=3.85,
process_action.action_controller;dur=26.17
- sql.active_record;dur=19.93, cache_read.active_support;dur=0.08, cache_generate.active_support;dur=14.97,
cache_write.active_support;dur=0.28, instantiation.active_record;dur=35.87,
start_processing.action_controller;dur=0.01, render.active_model_serializers;dur=40.23,
process_action.action_controller;dur=200.99
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -105,11 +105,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T21:55:00.998808Z'
- '2025-08-15T17:35:00.579125Z'
X-Request-Id:
- b50f1381-39b8-4eea-975b-a08cb06b7b8f
- 383f24d7-e488-4140-8a26-bd98462410c9
X-Runtime:
- '0.044799'
- '0.334694'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -16,7 +16,7 @@ interactions:
uri: http://localhost:3000/api/v1/accounts/verify_credentials
response:
body:
string: '{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":null,"hide_collections":null,"noindex":false,"source":{"privacy":"public","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[],"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}'
string: '{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":null,"hide_collections":null,"noindex":false,"source":{"privacy":"public","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[],"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}'
headers:
Cache-Control:
- private, no-store
@ -27,14 +27,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"6521289dad4f8e47d25b9253ee8b0e90"
- W/"ff57a4652fc51bf91f85caf39b38ae48"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=1.13, cache_generate.active_support;dur=1.62,
cache_write.active_support;dur=0.11, instantiation.active_record;dur=0.31,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.09,
process_action.action_controller;dur=22.96
- cache_read.active_support;dur=0.04, sql.active_record;dur=1.16, cache_generate.active_support;dur=1.51,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.34,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.40,
process_action.action_controller;dur=25.62
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -46,11 +46,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T21:55:00.806907Z'
- '2025-08-15T17:35:00.498573Z'
X-Request-Id:
- 06ee05f6-589c-4189-820c-c772b3df45ce
- 65b876d8-6f99-4126-94dc-43e9749f9ff3
X-Runtime:
- '0.037676'
- '0.046820'
X-XSS-Protection:
- '0'
vary:
@ -64,7 +64,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -74,10 +74,10 @@ interactions:
User-Agent:
- tests/v311
method: POST
uri: http://localhost:3000/api/v1/accounts/113998800956287197/block
uri: http://localhost:3000/api/v1/accounts/115033965466813222/block
response:
body:
string: '{"id":"113998800956287197","following":false,"showing_reblogs":false,"notifying":false,"languages":null,"followed_by":false,"blocking":true,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":""}'
string: '{"id":"115033965466813222","following":false,"showing_reblogs":false,"notifying":false,"languages":null,"followed_by":false,"blocking":true,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":""}'
headers:
Cache-Control:
- private, no-store
@ -88,16 +88,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"134672dc2d9b9055b8df626aac7337aa"
- W/"a26babd642b72d3568ab579660c72137"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=6.85, cache_generate.active_support;dur=0.97,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.37,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=4.32,
- cache_read.active_support;dur=0.02, sql.active_record;dur=7.65, cache_generate.active_support;dur=0.91,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.38,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=6.03,
cache_delete.active_support;dur=0.04, cache_read_multi.active_support;dur=0.04,
cache_write_multi.active_support;dur=0.07, render.active_model_serializers;dur=0.16,
process_action.action_controller;dur=40.81
cache_write_multi.active_support;dur=0.06, render.active_model_serializers;dur=0.14,
process_action.action_controller;dur=43.97
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -109,11 +109,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T21:55:00.863836Z'
- '2025-08-15T17:35:00.565365Z'
X-Request-Id:
- 686fa0ac-66b5-439e-b64f-8d2343675506
- 5aa2d636-4153-490e-a803-5b709c9cf488
X-Runtime:
- '0.056810'
- '0.063945'
X-XSS-Protection:
- '0'
vary:
@ -127,7 +127,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -137,10 +137,10 @@ interactions:
User-Agent:
- tests/v311
method: POST
uri: http://localhost:3000/api/v1/accounts/113998800956287197/unblock
uri: http://localhost:3000/api/v1/accounts/115033965466813222/unblock
response:
body:
string: '{"id":"113998800956287197","following":false,"showing_reblogs":false,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":""}'
string: '{"id":"115033965466813222","following":false,"showing_reblogs":false,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":""}'
headers:
Cache-Control:
- private, no-store
@ -151,16 +151,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"944fa9eefa1743a8c904af6592c73dfb"
- W/"fe572ec4cc8d7e18e0f2b66935e77757"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=4.78, cache_generate.active_support;dur=0.92,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.45,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=2.82,
cache_delete.active_support;dur=0.05, cache_read_multi.active_support;dur=0.03,
cache_write_multi.active_support;dur=0.07, render.active_model_serializers;dur=0.17,
process_action.action_controller;dur=32.67
- cache_read.active_support;dur=0.02, sql.active_record;dur=7.24, cache_generate.active_support;dur=0.91,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=1.75,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=3.98,
cache_delete.active_support;dur=0.04, cache_read_multi.active_support;dur=0.02,
cache_write_multi.active_support;dur=0.05, render.active_model_serializers;dur=0.15,
process_action.action_controller;dur=45.22
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -172,11 +172,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T21:55:00.938253Z'
- '2025-08-15T17:35:00.647880Z'
X-Request-Id:
- cc2a513e-38c2-4b25-bb70-b186d4cbc52e
- c30f895b-7ef3-437f-a27c-1e5b40b49220
X-Runtime:
- '0.059373'
- '0.064379'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -16,7 +16,7 @@ interactions:
uri: http://localhost:3000/api/v1/accounts/verify_credentials
response:
body:
string: '{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"source":{"privacy":"public","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[],"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}'
string: '{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"source":{"privacy":"public","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[],"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}'
headers:
Cache-Control:
- private, no-store
@ -27,14 +27,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"b6350143e248c3da0a008d7802a7979c"
- W/"901229a4c5a66235f03efff55b92086a"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.05, sql.active_record;dur=1.48, cache_generate.active_support;dur=4.44,
cache_write.active_support;dur=0.14, instantiation.active_record;dur=0.51,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=5.55,
process_action.action_controller;dur=25.00
- cache_read.active_support;dur=0.03, sql.active_record;dur=1.03, cache_generate.active_support;dur=1.50,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.30,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.14,
process_action.action_controller;dur=24.92
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -46,11 +46,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.490591Z'
- '2025-08-15T17:35:00.703860Z'
X-Request-Id:
- bf15245f-0a3f-45ba-a9b5-f680957ffd39
- e56afaba-57ad-466c-bdf6-2bcb59398274
X-Runtime:
- '0.044432'
- '0.045576'
X-XSS-Protection:
- '0'
vary:
@ -59,12 +59,12 @@ interactions:
code: 200
message: OK
- request:
body: '{"id": ["113998800956287197"]}'
body: '{"id": ["115033965466813222"]}'
headers:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -79,7 +79,7 @@ interactions:
uri: http://localhost:3000/api/v1/accounts/familiar_followers
response:
body:
string: '[{"id":"113998800956287197","accounts":[]}]'
string: '[{"id":"115033965466813222","accounts":[]}]'
headers:
Cache-Control:
- private, no-store
@ -90,14 +90,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"1e89c3f77b8d7aab413a5ad717b92d00"
- W/"4e014cba8b6d8098adbf4a39a0205177"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=1.34, cache_generate.active_support;dur=1.08,
cache_write.active_support;dur=0.09, instantiation.active_record;dur=0.30,
start_processing.action_controller;dur=0.01, render.active_model_serializers;dur=0.91,
process_action.action_controller;dur=24.83
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.95, cache_generate.active_support;dur=0.91,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.24,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.24,
process_action.action_controller;dur=32.79
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -109,11 +109,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.563301Z'
- '2025-08-15T17:35:00.773502Z'
X-Request-Id:
- 05531dbe-288e-4933-bbb2-bedba5ddcdf5
- ef6e3481-46a7-4330-90c9-2200b1d0b7b1
X-Runtime:
- '0.052202'
- '0.055366'
X-XSS-Protection:
- '0'
vary:
@ -127,7 +127,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -138,7 +138,7 @@ interactions:
uri: http://localhost:3000/api/v1/accounts/verify_credentials
response:
body:
string: '{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"source":{"privacy":"public","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[],"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}'
string: '{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"source":{"privacy":"public","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[],"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}'
headers:
Cache-Control:
- private, no-store
@ -149,14 +149,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"be8cf6e4ab6e27b1683738931eefd7a8"
- W/"901229a4c5a66235f03efff55b92086a"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.06, sql.active_record;dur=1.37, cache_generate.active_support;dur=1.96,
cache_write.active_support;dur=0.13, instantiation.active_record;dur=0.53,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=5.27,
process_action.action_controller;dur=24.88
- cache_read.active_support;dur=0.03, sql.active_record;dur=0.98, cache_generate.active_support;dur=1.35,
cache_write.active_support;dur=0.09, instantiation.active_record;dur=0.31,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.34,
process_action.action_controller;dur=24.86
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -168,11 +168,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.608081Z'
- '2025-08-15T17:35:00.839299Z'
X-Request-Id:
- d03a58f0-7936-45b1-a350-2ef6f80c18f5
- e7dff34b-c4aa-48b1-a3a1-a58a88a14909
X-Runtime:
- '0.040632'
- '0.049140'
X-XSS-Protection:
- '0'
vary:
@ -186,7 +186,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -197,7 +197,7 @@ interactions:
uri: http://localhost:3000/api/v1/accounts/verify_credentials
response:
body:
string: '{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"source":{"privacy":"public","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[],"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}'
string: '{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"source":{"privacy":"public","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[],"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}'
headers:
Cache-Control:
- private, no-store
@ -208,14 +208,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"be8cf6e4ab6e27b1683738931eefd7a8"
- W/"901229a4c5a66235f03efff55b92086a"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=1.22, cache_generate.active_support;dur=1.47,
cache_write.active_support;dur=0.12, instantiation.active_record;dur=0.32,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.39,
process_action.action_controller;dur=23.41
- cache_read.active_support;dur=0.03, sql.active_record;dur=1.00, cache_generate.active_support;dur=1.39,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.32,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=3.94,
process_action.action_controller;dur=25.77
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -227,11 +227,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.676298Z'
- '2025-08-15T17:35:00.911277Z'
X-Request-Id:
- 8a5701b8-5a7d-4c1f-85cd-ac7e6cb901af
- efb4848a-6a8b-43a4-a565-ac8d5eca1106
X-Runtime:
- '0.048481'
- '0.045591'
X-XSS-Protection:
- '0'
vary:
@ -245,7 +245,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_3
Connection:
@ -256,7 +256,7 @@ interactions:
uri: http://localhost:3000/api/v1/accounts/verify_credentials
response:
body:
string: '{"id":"113998801391516277","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"source":{"privacy":"public","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":true,"indexable":true},"emojis":[],"roles":[],"fields":[],"role":{"id":"-99","name":"","permissions":"65536","color":"","highlighted":false}}'
string: '{"id":"115033965921234147","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"source":{"privacy":"public","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":true,"indexable":true},"emojis":[],"roles":[],"fields":[],"role":{"id":"-99","name":"","permissions":"65536","color":"","highlighted":false}}'
headers:
Cache-Control:
- private, no-store
@ -267,14 +267,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"1baaecec8694a59b437ee2d9c5f0a36a"
- W/"22a1807e9781bdb7e61a59e7fa8805f1"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=0.99, cache_generate.active_support;dur=1.80,
cache_write.active_support;dur=0.11, instantiation.active_record;dur=0.30,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=3.94,
process_action.action_controller;dur=22.09
- cache_read.active_support;dur=0.03, sql.active_record;dur=0.95, cache_generate.active_support;dur=1.51,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.32,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=3.59,
process_action.action_controller;dur=24.40
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -286,11 +286,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.741511Z'
- '2025-08-15T17:35:00.982551Z'
X-Request-Id:
- a5c0456f-64b0-46eb-9926-ffbbfb18a42a
- f259730f-a5db-4ac2-803f-a3ebac7cfe21
X-Runtime:
- '0.037916'
- '0.044109'
X-XSS-Protection:
- '0'
vary:
@ -299,12 +299,12 @@ interactions:
code: 200
message: OK
- request:
body: '{"id": ["113998800956287197", "113998801391516277"]}'
body: '{"id": ["115033965466813222", "115033965921234147"]}'
headers:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -319,7 +319,7 @@ interactions:
uri: http://localhost:3000/api/v1/accounts/familiar_followers
response:
body:
string: '[{"id":"113998800956287197","accounts":[]},{"id":"113998801391516277","accounts":[]}]'
string: '[{"id":"115033965466813222","accounts":[]},{"id":"115033965921234147","accounts":[]}]'
headers:
Cache-Control:
- private, no-store
@ -330,14 +330,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"3b5c6bde505e098e0f558fad5863e63a"
- W/"4b5d2efa58f431e2c77317b3b836c394"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=7.08, cache_generate.active_support;dur=0.87,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.31,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.34,
process_action.action_controller;dur=31.33
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.94, cache_generate.active_support;dur=0.80,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.22,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.26,
process_action.action_controller;dur=22.77
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -349,11 +349,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.798463Z'
- '2025-08-15T17:35:00.052937Z'
X-Request-Id:
- de2e7182-c7b2-4345-ac84-5b4445c8108d
- 673b53db-3b08-46ff-b489-cbbef5ba3b59
X-Runtime:
- '0.047525'
- '0.042146'
X-XSS-Protection:
- '0'
vary:
@ -367,7 +367,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -378,7 +378,7 @@ interactions:
uri: http://localhost:3000/api/v1/accounts/verify_credentials
response:
body:
string: '{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"source":{"privacy":"public","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[],"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}'
string: '{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"source":{"privacy":"public","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[],"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}'
headers:
Cache-Control:
- private, no-store
@ -389,14 +389,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"be8cf6e4ab6e27b1683738931eefd7a8"
- W/"901229a4c5a66235f03efff55b92086a"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.06, sql.active_record;dur=1.77, cache_generate.active_support;dur=2.24,
cache_write.active_support;dur=0.15, instantiation.active_record;dur=0.60,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=8.14,
process_action.action_controller;dur=27.67
- cache_read.active_support;dur=0.03, sql.active_record;dur=1.01, cache_generate.active_support;dur=1.37,
cache_write.active_support;dur=0.09, instantiation.active_record;dur=0.31,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.44,
process_action.action_controller;dur=25.30
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -408,11 +408,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.853449Z'
- '2025-08-15T17:35:00.107583Z'
X-Request-Id:
- 1350f7c3-a695-41d5-86d1-721e80f0e7ae
- 8f270593-0328-4ad9-9f3a-c9adbcec30b8
X-Runtime:
- '0.046512'
- '0.048111'
X-XSS-Protection:
- '0'
vary:
@ -426,7 +426,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_3
Connection:
@ -437,7 +437,7 @@ interactions:
uri: http://localhost:3000/api/v1/accounts/verify_credentials
response:
body:
string: '{"id":"113998801391516277","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"source":{"privacy":"public","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":true,"indexable":true},"emojis":[],"roles":[],"fields":[],"role":{"id":"-99","name":"","permissions":"65536","color":"","highlighted":false}}'
string: '{"id":"115033965921234147","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"source":{"privacy":"public","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":true,"indexable":true},"emojis":[],"roles":[],"fields":[],"role":{"id":"-99","name":"","permissions":"65536","color":"","highlighted":false}}'
headers:
Cache-Control:
- private, no-store
@ -448,14 +448,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"1baaecec8694a59b437ee2d9c5f0a36a"
- W/"22a1807e9781bdb7e61a59e7fa8805f1"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.05, sql.active_record;dur=1.76, cache_generate.active_support;dur=1.68,
cache_write.active_support;dur=0.12, instantiation.active_record;dur=0.42,
start_processing.action_controller;dur=0.01, render.active_model_serializers;dur=5.02,
process_action.action_controller;dur=24.64
- cache_read.active_support;dur=0.03, sql.active_record;dur=0.89, cache_generate.active_support;dur=1.35,
cache_write.active_support;dur=0.23, instantiation.active_record;dur=0.28,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=3.53,
process_action.action_controller;dur=23.66
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -467,11 +467,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.922678Z'
- '2025-08-15T17:35:00.178405Z'
X-Request-Id:
- c7f2d0a0-d19c-4a92-ad62-6349bf9822f2
- e38c5bca-646d-466b-b990-a8d8972f27a2
X-Runtime:
- '0.046620'
- '0.043270'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -16,7 +16,7 @@ interactions:
uri: http://localhost:3000/api/v1/accounts/verify_credentials
response:
body:
string: '{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":null,"hide_collections":null,"noindex":false,"source":{"privacy":"public","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[],"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}'
string: '{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":null,"hide_collections":null,"noindex":false,"source":{"privacy":"public","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[],"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}'
headers:
Cache-Control:
- private, no-store
@ -27,14 +27,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"6521289dad4f8e47d25b9253ee8b0e90"
- W/"ff57a4652fc51bf91f85caf39b38ae48"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=12.45, cache_generate.active_support;dur=1.83,
cache_write.active_support;dur=0.11, instantiation.active_record;dur=0.50,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=8.19,
render.active_model_serializers;dur=17.70, process_action.action_controller;dur=47.00
- cache_read.active_support;dur=0.04, sql.active_record;dur=10.15, cache_generate.active_support;dur=1.82,
cache_write.active_support;dur=0.12, instantiation.active_record;dur=0.35,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=9.84,
render.active_model_serializers;dur=4.78, process_action.action_controller;dur=38.36
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -46,11 +46,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T21:55:00.600685Z'
- '2025-08-15T17:35:00.246481Z'
X-Request-Id:
- 2ea5f961-622f-4d53-b2a3-3d1973d30668
- 2daf114c-9a1c-4c2a-bae8-ddaf2950603c
X-Runtime:
- '0.062931'
- '0.059093'
X-XSS-Protection:
- '0'
vary:
@ -64,7 +64,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -76,10 +76,10 @@ interactions:
User-Agent:
- tests/v311
method: POST
uri: http://localhost:3000/api/v1/accounts/113998800956287197/follow
uri: http://localhost:3000/api/v1/accounts/115033965466813222/follow
response:
body:
string: '{"id":"113998800956287197","following":true,"showing_reblogs":true,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":""}'
string: '{"id":"115033965466813222","following":true,"showing_reblogs":true,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":""}'
headers:
Cache-Control:
- private, no-store
@ -90,16 +90,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"f68e56ceff6957908bad8784b4dbcaae"
- W/"2bdbe91ab3d01d6ec69a55952414f21e"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.03, sql.active_record;dur=6.61, cache_generate.active_support;dur=1.09,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.58,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=6.71,
- cache_read.active_support;dur=0.02, sql.active_record;dur=7.30, cache_generate.active_support;dur=1.03,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.50,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=8.52,
cache_delete.active_support;dur=0.03, cache_read_multi.active_support;dur=0.05,
cache_write_multi.active_support;dur=0.07, render.active_model_serializers;dur=0.17,
process_action.action_controller;dur=41.56
cache_write_multi.active_support;dur=0.06, render.active_model_serializers;dur=0.15,
process_action.action_controller;dur=42.36
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -111,11 +111,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T21:55:00.680809Z'
- '2025-08-15T17:35:00.323833Z'
X-Request-Id:
- f511c805-5763-4ff9-8425-4617c07fe104
- f43210b2-d1d2-4524-b67e-005cfaacfb50
X-Runtime:
- '0.057681'
- '0.062617'
X-XSS-Protection:
- '0'
vary:
@ -129,7 +129,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -139,10 +139,10 @@ interactions:
User-Agent:
- tests/v311
method: POST
uri: http://localhost:3000/api/v1/accounts/113998800956287197/unfollow
uri: http://localhost:3000/api/v1/accounts/115033965466813222/unfollow
response:
body:
string: '{"id":"113998800956287197","following":false,"showing_reblogs":false,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":""}'
string: '{"id":"115033965466813222","following":false,"showing_reblogs":false,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":""}'
headers:
Cache-Control:
- private, no-store
@ -153,16 +153,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"944fa9eefa1743a8c904af6592c73dfb"
- W/"fe572ec4cc8d7e18e0f2b66935e77757"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=5.49, cache_generate.active_support;dur=0.98,
cache_write.active_support;dur=0.09, instantiation.active_record;dur=0.59,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=6.41,
cache_delete.active_support;dur=0.03, cache_read_multi.active_support;dur=0.03,
cache_write_multi.active_support;dur=0.06, render.active_model_serializers;dur=0.16,
process_action.action_controller;dur=35.64
- cache_read.active_support;dur=0.02, sql.active_record;dur=10.45, cache_generate.active_support;dur=0.68,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.51,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=14.19,
cache_delete.active_support;dur=0.04, cache_read_multi.active_support;dur=0.18,
cache_write_multi.active_support;dur=0.06, render.active_model_serializers;dur=0.15,
process_action.action_controller;dur=60.01
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -174,11 +174,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T21:55:00.745021Z'
- '2025-08-15T17:35:00.396305Z'
X-Request-Id:
- 22a46f80-ea5a-4ec6-a4cd-03de99baf404
- 61fe2130-5c0f-4434-86f5-ba2d0c4309a9
X-Runtime:
- '0.051172'
- '0.078147'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -16,7 +16,7 @@ interactions:
uri: http://localhost:3000/api/v1/accounts/verify_credentials
response:
body:
string: '{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":null,"hide_collections":null,"noindex":false,"source":{"privacy":"private","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[],"fields":[],"role":{"id":"-99","name":"","permissions":"65536","color":"","highlighted":false}}'
string: '{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":null,"hide_collections":null,"noindex":false,"source":{"privacy":"private","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[],"fields":[],"role":{"id":"-99","name":"","permissions":"65536","color":"","highlighted":false}}'
headers:
Cache-Control:
- private, no-store
@ -27,14 +27,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"342bcc17c9c3527608ac3f1ab53a23a1"
- W/"1bed31bf37d24052d7eb4a8f3787a0f1"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=1.32, cache_generate.active_support;dur=1.72,
cache_write.active_support;dur=0.12, instantiation.active_record;dur=0.29,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.29,
process_action.action_controller;dur=24.23
- cache_read.active_support;dur=0.03, sql.active_record;dur=1.16, cache_generate.active_support;dur=1.68,
cache_write.active_support;dur=0.32, instantiation.active_record;dur=0.24,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.38,
process_action.action_controller;dur=25.51
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -46,11 +46,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T21:55:00.559166Z'
- '2025-08-15T17:35:00.378167Z'
X-Request-Id:
- c00a8c97-04b6-414b-ab7c-9fff61b69792
- 26a0c2ad-9cfe-44ac-a0e0-feea8a24fc5a
X-Runtime:
- '0.039575'
- '0.045037'
X-XSS-Protection:
- '0'
vary:
@ -64,7 +64,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -72,7 +72,7 @@ interactions:
User-Agent:
- tests/v311
method: GET
uri: http://localhost:3000/api/v1/accounts/113998801242326861/followers
uri: http://localhost:3000/api/v1/accounts/115033965771926537/followers
response:
body:
string: '[]'
@ -90,10 +90,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.03, sql.active_record;dur=1.42, cache_generate.active_support;dur=1.15,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.34,
start_processing.action_controller;dur=0.01, render.active_model_serializers;dur=0.04,
process_action.action_controller;dur=23.47
- cache_read.active_support;dur=0.02, sql.active_record;dur=1.25, cache_generate.active_support;dur=0.92,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.20,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.03,
process_action.action_controller;dur=23.08
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -105,11 +105,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T21:55:00.623024Z'
- '2025-08-15T17:35:00.446194Z'
X-Request-Id:
- cd909de5-f544-4ba1-958e-29512b946ba6
- d3e4f002-91d8-4937-b741-0156fb8dde4d
X-Runtime:
- '0.043400'
- '0.044732'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -16,7 +16,7 @@ interactions:
uri: http://localhost:3000/api/v1/accounts/verify_credentials
response:
body:
string: '{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":null,"hide_collections":null,"noindex":false,"source":{"privacy":"private","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[],"fields":[],"role":{"id":"-99","name":"","permissions":"65536","color":"","highlighted":false}}'
string: '{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":null,"hide_collections":null,"noindex":false,"source":{"privacy":"private","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[],"fields":[],"role":{"id":"-99","name":"","permissions":"65536","color":"","highlighted":false}}'
headers:
Cache-Control:
- private, no-store
@ -27,14 +27,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"342bcc17c9c3527608ac3f1ab53a23a1"
- W/"1bed31bf37d24052d7eb4a8f3787a0f1"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=1.11, cache_generate.active_support;dur=1.58,
cache_write.active_support;dur=0.11, instantiation.active_record;dur=0.32,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.57,
process_action.action_controller;dur=23.40
- cache_read.active_support;dur=0.04, sql.active_record;dur=1.31, cache_generate.active_support;dur=1.61,
cache_write.active_support;dur=0.09, instantiation.active_record;dur=0.26,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.34,
process_action.action_controller;dur=25.73
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -46,11 +46,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T21:55:00.409711Z'
- '2025-08-15T17:35:00.236821Z'
X-Request-Id:
- 1afdcaa8-b830-4479-b36f-c712de1c8f37
- 72825519-ac25-4b2d-90f1-efae743a53bb
X-Runtime:
- '0.039065'
- '0.045758'
X-XSS-Protection:
- '0'
vary:
@ -64,7 +64,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -72,7 +72,7 @@ interactions:
User-Agent:
- tests/v311
method: GET
uri: http://localhost:3000/api/v1/accounts/113998801242326861/following
uri: http://localhost:3000/api/v1/accounts/115033965771926537/following
response:
body:
string: '[]'
@ -90,10 +90,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.03, sql.active_record;dur=6.16, cache_generate.active_support;dur=1.05,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.33,
- cache_read.active_support;dur=0.02, sql.active_record;dur=4.92, cache_generate.active_support;dur=1.00,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.25,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.04,
process_action.action_controller;dur=36.46
process_action.action_controller;dur=37.41
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -105,11 +105,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T21:55:00.498538Z'
- '2025-08-15T17:35:00.308262Z'
X-Request-Id:
- b7d5d245-b5d8-4dda-9fcc-89da9093dd8f
- 55d5d15d-ef2a-4808-9241-e4498b588c7d
X-Runtime:
- '0.058976'
- '0.060360'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -16,9 +16,9 @@ interactions:
uri: http://localhost:3000/api/v1/accounts/verify_credentials
response:
body:
string: '{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"source":{"privacy":"private","sensitive":false,"language":null,"note":"I
string: '{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"source":{"privacy":"private","sensitive":false,"language":null,"note":"I
walk funny","fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}],"role":{"id":"-99","name":"","permissions":"65536","color":"","highlighted":false}}'
headers:
Cache-Control:
@ -30,14 +30,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"f89be396df1ad6f093537353beea9e72"
- W/"c46fc1233ec9bd9d9b6adca16123ce1c"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=1.09, cache_generate.active_support;dur=1.66,
cache_write.active_support;dur=3.25, instantiation.active_record;dur=0.36,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=7.87,
process_action.action_controller;dur=28.55
- cache_read.active_support;dur=0.03, sql.active_record;dur=0.99, cache_generate.active_support;dur=1.54,
cache_write.active_support;dur=0.09, instantiation.active_record;dur=0.32,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.42,
process_action.action_controller;dur=25.58
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -49,11 +49,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.242134Z'
- '2025-08-15T17:35:00.415850Z'
X-Request-Id:
- 9b4ef3ee-e9cb-48d8-9040-ffae19a260d7
- bb1fa88d-c229-42a6-b65f-0fc01808466d
X-Runtime:
- '0.050556'
- '0.044649'
X-XSS-Protection:
- '0'
vary:
@ -67,7 +67,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -91,10 +91,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.94, cache_generate.active_support;dur=1.02,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.26,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.04,
process_action.action_controller;dur=25.58
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.65, cache_generate.active_support;dur=0.90,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.24,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.03,
process_action.action_controller;dur=23.57
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -106,11 +106,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.303456Z'
- '2025-08-15T17:35:00.483230Z'
X-Request-Id:
- b303e535-12e5-4208-a588-aa8ec04f9807
- 4aea80ab-5b6d-4170-bcee-8563c05440b5
X-Runtime:
- '0.040967'
- '0.043158'
X-XSS-Protection:
- '0'
vary:
@ -124,7 +124,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -135,9 +135,9 @@ interactions:
uri: http://localhost:3000/api/v1/accounts/lookup?acct=mastodonpy_test
response:
body:
string: '{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]}'
string: '{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]}'
headers:
Cache-Control:
- private, no-store
@ -148,14 +148,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"144cbffd21daf26e0c7544fd3a30008f"
- W/"f185c2e89fd4896ec0944c731c21e2a3"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=1.29, cache_generate.active_support;dur=1.53,
cache_write.active_support;dur=0.11, instantiation.active_record;dur=0.45,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.62,
process_action.action_controller;dur=25.28
- cache_read.active_support;dur=0.03, sql.active_record;dur=0.99, cache_generate.active_support;dur=1.40,
cache_write.active_support;dur=0.09, instantiation.active_record;dur=0.40,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.31,
process_action.action_controller;dur=25.99
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -167,11 +167,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.360970Z'
- '2025-08-15T17:35:00.550345Z'
X-Request-Id:
- ec66a701-9d7d-4181-9449-ca0b656bec5b
- 3d94dd8d-6a50-4d83-bcf1-4a5f9e95d683
X-Runtime:
- '0.041067'
- '0.045016'
X-XSS-Protection:
- '0'
vary:
@ -185,7 +185,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -196,9 +196,9 @@ interactions:
uri: http://localhost:3000/api/v1/accounts/lookup?acct=mastodonpy_test%40localhost%3A3000
response:
body:
string: '{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]}'
string: '{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]}'
headers:
Cache-Control:
- private, no-store
@ -209,14 +209,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"144cbffd21daf26e0c7544fd3a30008f"
- W/"f185c2e89fd4896ec0944c731c21e2a3"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=1.30, cache_generate.active_support;dur=1.58,
cache_write.active_support;dur=0.12, instantiation.active_record;dur=0.50,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.54,
process_action.action_controller;dur=24.67
- cache_read.active_support;dur=0.03, sql.active_record;dur=1.09, cache_generate.active_support;dur=1.42,
cache_write.active_support;dur=0.09, instantiation.active_record;dur=0.41,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=3.91,
process_action.action_controller;dur=25.52
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -228,11 +228,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.419981Z'
- '2025-08-15T17:35:00.619943Z'
X-Request-Id:
- 05982c1e-372c-4d9e-985a-3e4c7b639450
- d5de6056-df2e-4068-b423-f783f044bc9f
X-Runtime:
- '0.040296'
- '0.044438'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -16,7 +16,7 @@ interactions:
uri: http://localhost:3000/api/v1/accounts/verify_credentials
response:
body:
string: '{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":null,"hide_collections":null,"noindex":false,"source":{"privacy":"public","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[],"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}'
string: '{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":null,"hide_collections":null,"noindex":false,"source":{"privacy":"public","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[],"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}'
headers:
Cache-Control:
- private, no-store
@ -27,14 +27,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"6521289dad4f8e47d25b9253ee8b0e90"
- W/"ff57a4652fc51bf91f85caf39b38ae48"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=0.95, cache_generate.active_support;dur=1.47,
cache_write.active_support;dur=0.12, instantiation.active_record;dur=0.33,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.10,
process_action.action_controller;dur=22.97
- cache_read.active_support;dur=0.03, sql.active_record;dur=1.00, cache_generate.active_support;dur=1.42,
cache_write.active_support;dur=0.09, instantiation.active_record;dur=0.28,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.31,
process_action.action_controller;dur=24.93
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -46,11 +46,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T21:55:00.004585Z'
- '2025-08-15T17:35:00.725827Z'
X-Request-Id:
- d5496cbc-48cb-483a-aed0-6c98c9cb23ac
- 5dafbe02-543f-48d1-bcca-3d97ec96a507
X-Runtime:
- '0.045805'
- '0.044854'
X-XSS-Protection:
- '0'
vary:
@ -64,7 +64,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -76,10 +76,10 @@ interactions:
User-Agent:
- tests/v311
method: POST
uri: http://localhost:3000/api/v1/accounts/113998800956287197/mute
uri: http://localhost:3000/api/v1/accounts/115033965466813222/mute
response:
body:
string: '{"id":"113998800956287197","following":false,"showing_reblogs":false,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":true,"muting_notifications":true,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":""}'
string: '{"id":"115033965466813222","following":false,"showing_reblogs":false,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":true,"muting_notifications":true,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":""}'
headers:
Cache-Control:
- private, no-store
@ -90,16 +90,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"ebc439e1821d70bbf65e7ef2a350724d"
- W/"22ce63333d18b27b040a4c415e1648e6"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.03, sql.active_record;dur=6.46, cache_generate.active_support;dur=1.02,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.43,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=4.13,
cache_delete.active_support;dur=0.04, cache_read_multi.active_support;dur=0.03,
cache_write_multi.active_support;dur=0.06, render.active_model_serializers;dur=0.17,
process_action.action_controller;dur=38.34
- cache_read.active_support;dur=0.02, sql.active_record;dur=7.56, cache_generate.active_support;dur=0.81,
cache_write.active_support;dur=0.06, instantiation.active_record;dur=0.38,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=5.16,
cache_delete.active_support;dur=0.03, cache_read_multi.active_support;dur=0.03,
cache_write_multi.active_support;dur=0.05, render.active_model_serializers;dur=0.14,
process_action.action_controller;dur=40.61
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -111,11 +111,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T21:55:00.062338Z'
- '2025-08-15T17:35:00.791300Z'
X-Request-Id:
- 43010db4-f905-49e7-be34-950c630b6331
- ba083643-0b64-455c-b756-bf4ebb8c334e
X-Runtime:
- '0.054131'
- '0.059565'
X-XSS-Protection:
- '0'
vary:
@ -129,7 +129,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -139,10 +139,10 @@ interactions:
User-Agent:
- tests/v311
method: POST
uri: http://localhost:3000/api/v1/accounts/113998800956287197/unmute
uri: http://localhost:3000/api/v1/accounts/115033965466813222/unmute
response:
body:
string: '{"id":"113998800956287197","following":false,"showing_reblogs":false,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":""}'
string: '{"id":"115033965466813222","following":false,"showing_reblogs":false,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":""}'
headers:
Cache-Control:
- private, no-store
@ -153,16 +153,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"944fa9eefa1743a8c904af6592c73dfb"
- W/"fe572ec4cc8d7e18e0f2b66935e77757"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.03, sql.active_record;dur=4.74, cache_generate.active_support;dur=1.01,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.45,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=2.66,
cache_delete.active_support;dur=0.04, cache_read_multi.active_support;dur=0.04,
cache_write_multi.active_support;dur=0.07, render.active_model_serializers;dur=0.19,
process_action.action_controller;dur=32.63
- cache_read.active_support;dur=0.02, sql.active_record;dur=6.89, cache_generate.active_support;dur=0.84,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=2.88,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=4.00,
cache_delete.active_support;dur=0.03, cache_read_multi.active_support;dur=0.04,
cache_write_multi.active_support;dur=0.05, render.active_model_serializers;dur=0.14,
process_action.action_controller;dur=38.91
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -174,11 +174,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T21:55:00.123046Z'
- '2025-08-15T17:35:00.868624Z'
X-Request-Id:
- 94d7802a-335b-4efb-b62a-26f8c45271b4
- b71dac12-d6ef-4e2f-a358-0b962b61e402
X-Runtime:
- '0.048294'
- '0.063850'
X-XSS-Protection:
- '0'
vary:
@ -192,7 +192,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -204,10 +204,10 @@ interactions:
User-Agent:
- tests/v311
method: POST
uri: http://localhost:3000/api/v1/accounts/113998800956287197/mute
uri: http://localhost:3000/api/v1/accounts/115033965466813222/mute
response:
body:
string: '{"id":"113998800956287197","following":false,"showing_reblogs":false,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":true,"muting_notifications":true,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":""}'
string: '{"id":"115033965466813222","following":false,"showing_reblogs":false,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":true,"muting_notifications":true,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":""}'
headers:
Cache-Control:
- private, no-store
@ -218,16 +218,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"ebc439e1821d70bbf65e7ef2a350724d"
- W/"22ce63333d18b27b040a4c415e1648e6"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=4.64, cache_generate.active_support;dur=0.98,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.36,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=3.73,
cache_delete.active_support;dur=0.04, cache_read_multi.active_support;dur=0.03,
cache_write_multi.active_support;dur=0.06, render.active_model_serializers;dur=0.16,
process_action.action_controller;dur=30.99
- cache_read.active_support;dur=0.02, sql.active_record;dur=6.58, cache_generate.active_support;dur=0.66,
cache_write.active_support;dur=0.06, instantiation.active_record;dur=0.34,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=5.97,
cache_delete.active_support;dur=0.03, cache_read_multi.active_support;dur=0.03,
cache_write_multi.active_support;dur=0.05, render.active_model_serializers;dur=0.14,
process_action.action_controller;dur=36.99
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -239,11 +239,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T21:55:00.176878Z'
- '2025-08-15T17:35:00.938301Z'
X-Request-Id:
- 694a6eb3-9b3c-4be8-9dd9-cb2d2071d5db
- d5a3a60e-0895-4c8b-b0e3-cbe27dcacc2c
X-Runtime:
- '0.045966'
- '0.055283'
X-XSS-Protection:
- '0'
vary:
@ -257,7 +257,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -265,10 +265,10 @@ interactions:
User-Agent:
- tests/v311
method: GET
uri: http://localhost:3000/api/v1/accounts/relationships?id=113998800956287197
uri: http://localhost:3000/api/v1/accounts/relationships?id=115033965466813222
response:
body:
string: '[{"id":"113998800956287197","following":false,"showing_reblogs":false,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":""}]'
string: '[{"id":"115033965466813222","following":false,"showing_reblogs":false,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":""}]'
headers:
Cache-Control:
- private, no-store
@ -279,15 +279,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"16f2ec960c2b8bb51ea45a6e87f39b1e"
- W/"289a4e4d25f64de01cc3b1faeee8d77c"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=1.40, cache_generate.active_support;dur=1.08,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.29,
start_processing.action_controller;dur=0.00, cache_read_multi.active_support;dur=0.05,
cache_write_multi.active_support;dur=0.07, render.active_model_serializers;dur=0.19,
process_action.action_controller;dur=24.89
- cache_read.active_support;dur=0.02, sql.active_record;dur=1.32, cache_generate.active_support;dur=0.99,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.21,
start_processing.action_controller;dur=0.00, cache_read_multi.active_support;dur=0.04,
cache_write_multi.active_support;dur=0.06, render.active_model_serializers;dur=0.17,
process_action.action_controller;dur=25.75
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -299,11 +299,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T21:55:00.252956Z'
- '2025-08-15T17:35:00.011135Z'
X-Request-Id:
- 688ee548-52ef-4e5c-8089-6eb80b757a6b
- e9f10ed8-f703-4785-a2e3-2040edc0ca25
X-Runtime:
- '0.054335'
- '0.046103'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -16,7 +16,7 @@ interactions:
uri: http://localhost:3000/api/v1/accounts/verify_credentials
response:
body:
string: '{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":null,"hide_collections":null,"noindex":false,"source":{"privacy":"public","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[],"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}'
string: '{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":null,"hide_collections":null,"noindex":false,"source":{"privacy":"public","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[],"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}'
headers:
Cache-Control:
- private, no-store
@ -27,14 +27,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"6521289dad4f8e47d25b9253ee8b0e90"
- W/"ff57a4652fc51bf91f85caf39b38ae48"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=1.00, cache_generate.active_support;dur=1.49,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.27,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.05,
process_action.action_controller;dur=21.80
- cache_read.active_support;dur=0.04, sql.active_record;dur=1.02, cache_generate.active_support;dur=1.48,
cache_write.active_support;dur=0.09, instantiation.active_record;dur=0.33,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.25,
process_action.action_controller;dur=25.28
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -46,11 +46,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.986071Z'
- '2025-08-15T17:35:00.129426Z'
X-Request-Id:
- b61c1c2c-899a-411e-b067-b35a9b2e35d7
- f62cfc14-f30b-4f41-9fd5-196698710276
X-Runtime:
- '0.035824'
- '0.044288'
X-XSS-Protection:
- '0'
vary:
@ -64,7 +64,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -76,10 +76,10 @@ interactions:
User-Agent:
- tests/v311
method: POST
uri: http://localhost:3000/api/v1/accounts/113998800956287197/note
uri: http://localhost:3000/api/v1/accounts/115033965466813222/note
response:
body:
string: '{"id":"113998800956287197","following":false,"showing_reblogs":false,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":"top
string: '{"id":"115033965466813222","following":false,"showing_reblogs":false,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":"top
ebayer gerne wieder"}'
headers:
Cache-Control:
@ -91,16 +91,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"980c7f806d79f9d809d65077d0616e26"
- W/"93a7ec1562e4d70121d96e3171b6fe44"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=5.57, cache_generate.active_support;dur=0.89,
cache_write.active_support;dur=0.09, instantiation.active_record;dur=0.33,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=4.00,
cache_delete.active_support;dur=0.03, cache_read_multi.active_support;dur=0.03,
cache_write_multi.active_support;dur=0.06, render.active_model_serializers;dur=0.16,
process_action.action_controller;dur=32.70
- cache_read.active_support;dur=0.02, sql.active_record;dur=7.23, cache_generate.active_support;dur=0.83,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.32,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=5.78,
cache_delete.active_support;dur=0.02, cache_read_multi.active_support;dur=0.03,
cache_write_multi.active_support;dur=0.06, render.active_model_serializers;dur=0.14,
process_action.action_controller;dur=43.54
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -112,11 +112,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.045026Z'
- '2025-08-15T17:35:00.199485Z'
X-Request-Id:
- 37188950-4c1e-44f6-9138-229682c8f1dc
- 745503d1-98df-4ce7-a553-820ddf3897fa
X-Runtime:
- '0.050775'
- '0.066631'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -16,7 +16,7 @@ interactions:
uri: http://localhost:3000/api/v1/accounts/verify_credentials
response:
body:
string: '{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":null,"hide_collections":null,"noindex":false,"source":{"privacy":"public","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[],"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}'
string: '{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":null,"hide_collections":null,"noindex":false,"source":{"privacy":"public","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[],"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}'
headers:
Cache-Control:
- private, no-store
@ -27,14 +27,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"6521289dad4f8e47d25b9253ee8b0e90"
- W/"ff57a4652fc51bf91f85caf39b38ae48"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=1.03, cache_generate.active_support;dur=1.50,
- cache_read.active_support;dur=0.04, sql.active_record;dur=1.04, cache_generate.active_support;dur=1.67,
cache_write.active_support;dur=0.09, instantiation.active_record;dur=0.31,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.67,
process_action.action_controller;dur=22.67
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.31,
process_action.action_controller;dur=24.95
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -46,11 +46,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T21:55:00.500514Z'
- '2025-08-15T17:35:00.328803Z'
X-Request-Id:
- f720a3b0-5477-4d40-b9e0-c8ec3f28a660
- ccd0bc04-ed62-4b9d-9ec7-937d050c86de
X-Runtime:
- '0.037377'
- '0.045689'
X-XSS-Protection:
- '0'
vary:
@ -64,7 +64,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -76,10 +76,10 @@ interactions:
User-Agent:
- tests/v311
method: POST
uri: http://localhost:3000/api/v1/accounts/113998800956287197/follow
uri: http://localhost:3000/api/v1/accounts/115033965466813222/follow
response:
body:
string: '{"id":"113998800956287197","following":true,"showing_reblogs":true,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":""}'
string: '{"id":"115033965466813222","following":true,"showing_reblogs":true,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":""}'
headers:
Cache-Control:
- private, no-store
@ -90,16 +90,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"f68e56ceff6957908bad8784b4dbcaae"
- W/"2bdbe91ab3d01d6ec69a55952414f21e"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=11.29, cache_generate.active_support;dur=1.46,
cache_write.active_support;dur=0.12, instantiation.active_record;dur=0.86,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=9.98,
cache_delete.active_support;dur=0.04, cache_read_multi.active_support;dur=0.06,
cache_write_multi.active_support;dur=0.10, render.active_model_serializers;dur=0.35,
process_action.action_controller;dur=53.89
- cache_read.active_support;dur=0.02, sql.active_record;dur=8.01, cache_generate.active_support;dur=0.90,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.47,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=7.75,
cache_delete.active_support;dur=0.03, cache_read_multi.active_support;dur=0.03,
cache_write_multi.active_support;dur=0.05, render.active_model_serializers;dur=0.14,
process_action.action_controller;dur=43.93
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -111,11 +111,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T21:55:00.557923Z'
- '2025-08-15T17:35:00.394833Z'
X-Request-Id:
- a4f3b151-4be0-42f9-a080-586d52e802f7
- ad86ae7e-0d4b-49ac-8c91-b3b1d499c256
X-Runtime:
- '0.069737'
- '0.063621'
X-XSS-Protection:
- '0'
vary:
@ -129,7 +129,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -139,10 +139,10 @@ interactions:
User-Agent:
- tests/v311
method: POST
uri: http://localhost:3000/api/v1/accounts/113998800956287197/unpin
uri: http://localhost:3000/api/v1/accounts/115033965466813222/unpin
response:
body:
string: '{"id":"113998800956287197","following":true,"showing_reblogs":true,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":""}'
string: '{"id":"115033965466813222","following":true,"showing_reblogs":true,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":""}'
headers:
Cache-Control:
- private, no-store
@ -153,15 +153,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"f68e56ceff6957908bad8784b4dbcaae"
- W/"2bdbe91ab3d01d6ec69a55952414f21e"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=1.88, cache_generate.active_support;dur=0.91,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.40,
start_processing.action_controller;dur=0.01, cache_read_multi.active_support;dur=0.04,
cache_write_multi.active_support;dur=0.07, render.active_model_serializers;dur=0.16,
process_action.action_controller;dur=26.89
- cache_read.active_support;dur=0.02, sql.active_record;dur=1.59, cache_generate.active_support;dur=0.76,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.36,
start_processing.action_controller;dur=0.00, cache_read_multi.active_support;dur=0.04,
cache_write_multi.active_support;dur=0.06, render.active_model_serializers;dur=0.14,
process_action.action_controller;dur=28.20
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -173,11 +173,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T21:55:00.637590Z'
- '2025-08-15T17:35:00.472015Z'
X-Request-Id:
- 843980d8-eae6-4032-ad67-8137735a2c5e
- 4394ebc8-a173-4edb-ba71-6efd343d7a40
X-Runtime:
- '0.045776'
- '0.049252'
X-XSS-Protection:
- '0'
vary:
@ -191,7 +191,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -201,10 +201,10 @@ interactions:
User-Agent:
- tests/v311
method: POST
uri: http://localhost:3000/api/v1/accounts/113998800956287197/pin
uri: http://localhost:3000/api/v1/accounts/115033965466813222/pin
response:
body:
string: '{"id":"113998800956287197","following":true,"showing_reblogs":true,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":true,"note":""}'
string: '{"id":"115033965466813222","following":true,"showing_reblogs":true,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":true,"note":""}'
headers:
Cache-Control:
- private, no-store
@ -215,16 +215,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"2e467ca3083c3e5dedae4fceb9526068"
- W/"e3a19e232bccf060606df4838c63e180"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=6.85, cache_generate.active_support;dur=0.92,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.36,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=7.26,
- cache_read.active_support;dur=0.02, sql.active_record;dur=6.53, cache_generate.active_support;dur=0.81,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.37,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=5.75,
cache_delete.active_support;dur=0.03, cache_read_multi.active_support;dur=0.03,
cache_write_multi.active_support;dur=0.07, render.active_model_serializers;dur=0.35,
process_action.action_controller;dur=33.82
cache_write_multi.active_support;dur=0.06, render.active_model_serializers;dur=0.15,
process_action.action_controller;dur=34.91
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -236,11 +236,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T21:55:00.695779Z'
- '2025-08-15T17:35:00.530729Z'
X-Request-Id:
- 41cd8f3b-928a-4082-becf-3e797a1506fd
- 507f4761-61f0-429a-a8fe-e188eabd399a
X-Runtime:
- '0.060022'
- '0.053475'
X-XSS-Protection:
- '0'
vary:
@ -254,7 +254,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -265,7 +265,7 @@ interactions:
uri: http://localhost:3000/api/v1/endorsements
response:
body:
string: '[{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":0,"last_status_at":null,"hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]}]'
string: '[{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":0,"last_status_at":null,"hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]}]'
headers:
Cache-Control:
- private, no-store
@ -276,16 +276,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"6b99496fdfb17af1999090091030dd1a"
- W/"891e909f588f5cbc23d0b5882028c6ad"
Link:
- <http://localhost:3000/api/v1/endorsements?since_id=113998800956287197>; rel="prev"
- <http://localhost:3000/api/v1/endorsements?since_id=115033965466813222>; rel="prev"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=1.26, cache_generate.active_support;dur=1.42,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.44,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=3.08,
process_action.action_controller;dur=28.44
- cache_read.active_support;dur=0.03, sql.active_record;dur=1.21, cache_generate.active_support;dur=1.50,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.42,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=2.27,
process_action.action_controller;dur=27.75
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -297,11 +297,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T21:55:00.753071Z'
- '2025-08-15T17:35:00.602552Z'
X-Request-Id:
- 692f4445-a297-486b-b100-d67af77dcb7d
- 4497bbb0-fc00-4792-8547-60714db5da10
X-Runtime:
- '0.044783'
- '0.057320'
X-XSS-Protection:
- '0'
vary:
@ -315,7 +315,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -325,10 +325,10 @@ interactions:
User-Agent:
- tests/v311
method: POST
uri: http://localhost:3000/api/v1/accounts/113998800956287197/unpin
uri: http://localhost:3000/api/v1/accounts/115033965466813222/unpin
response:
body:
string: '{"id":"113998800956287197","following":true,"showing_reblogs":true,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":""}'
string: '{"id":"115033965466813222","following":true,"showing_reblogs":true,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":""}'
headers:
Cache-Control:
- private, no-store
@ -339,16 +339,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"f68e56ceff6957908bad8784b4dbcaae"
- W/"2bdbe91ab3d01d6ec69a55952414f21e"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=4.40, cache_generate.active_support;dur=0.80,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.40,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=2.70,
cache_delete.active_support;dur=0.03, cache_read_multi.active_support;dur=0.03,
cache_write_multi.active_support;dur=0.07, render.active_model_serializers;dur=0.16,
process_action.action_controller;dur=28.41
- cache_read.active_support;dur=0.02, sql.active_record;dur=5.94, cache_generate.active_support;dur=0.91,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.39,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=4.84,
cache_delete.active_support;dur=0.02, cache_read_multi.active_support;dur=0.02,
cache_write_multi.active_support;dur=0.05, render.active_model_serializers;dur=0.14,
process_action.action_controller;dur=31.78
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -360,11 +360,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T21:55:00.810439Z'
- '2025-08-15T17:35:00.673497Z'
X-Request-Id:
- 9b15d67d-d62e-40d1-b542-80c189506c57
- ef9e1afc-256c-4e4e-89c7-92b969384c54
X-Runtime:
- '0.042513'
- '0.050895'
X-XSS-Protection:
- '0'
vary:
@ -378,7 +378,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -404,10 +404,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.82, cache_generate.active_support;dur=0.87,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.22,
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.75, cache_generate.active_support;dur=0.88,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.21,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.04,
process_action.action_controller;dur=20.29
process_action.action_controller;dur=22.70
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -419,11 +419,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T21:55:00.859783Z'
- '2025-08-15T17:35:00.737990Z'
X-Request-Id:
- 98b3519c-772d-4380-86ff-e4b83cd6682f
- 4cbfaf10-7c92-4bf6-bc0b-36ed117dd4d3
X-Runtime:
- '0.034877'
- '0.041939'
X-XSS-Protection:
- '0'
vary:
@ -437,7 +437,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -447,10 +447,10 @@ interactions:
User-Agent:
- tests/v311
method: POST
uri: http://localhost:3000/api/v1/accounts/113998800956287197/unfollow
uri: http://localhost:3000/api/v1/accounts/115033965466813222/unfollow
response:
body:
string: '{"id":"113998800956287197","following":false,"showing_reblogs":false,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":""}'
string: '{"id":"115033965466813222","following":false,"showing_reblogs":false,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":""}'
headers:
Cache-Control:
- private, no-store
@ -461,16 +461,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"944fa9eefa1743a8c904af6592c73dfb"
- W/"fe572ec4cc8d7e18e0f2b66935e77757"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=12.11, cache_generate.active_support;dur=0.93,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.61,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=18.79,
- cache_read.active_support;dur=0.02, sql.active_record;dur=6.70, cache_generate.active_support;dur=0.87,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.62,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=17.48,
cache_delete.active_support;dur=0.03, cache_read_multi.active_support;dur=0.03,
cache_write_multi.active_support;dur=0.07, render.active_model_serializers;dur=0.18,
process_action.action_controller;dur=66.02
cache_write_multi.active_support;dur=0.06, render.active_model_serializers;dur=0.15,
process_action.action_controller;dur=46.64
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -482,11 +482,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T21:55:00.901628Z'
- '2025-08-15T17:35:00.785628Z'
X-Request-Id:
- a75d141b-0277-4b22-8da5-b91eed4167a7
- 4597564d-5055-4823-bbbe-97889b2179e8
X-Runtime:
- '0.080720'
- '0.065479'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -20,10 +20,10 @@ interactions:
uri: http://localhost:3000/api/v1/statuses
response:
body:
string: '{"id":"113998803597680262","created_at":"2025-02-13T21:54:57.480Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/113998803597680262","url":"http://localhost:3000/@mastodonpy_test/113998803597680262","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eToot!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
string: '{"id":"115033972137940116","created_at":"2025-08-15T17:31:55.880Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/115033972137940116","url":"http://localhost:3000/@mastodonpy_test/115033972137940116","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eToot!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
@ -34,14 +34,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"8c1208cad23d5dc3d0f35880e4f7523a"
- W/"d62b0d07ff242736091cbfbac0633960"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.07, sql.active_record;dur=43.12, cache_generate.active_support;dur=32.30,
cache_write.active_support;dur=0.16, instantiation.active_record;dur=5.55,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=16.84,
render.active_model_serializers;dur=77.53, process_action.action_controller;dur=200.24
- cache_read.active_support;dur=0.06, sql.active_record;dur=42.40, cache_generate.active_support;dur=12.72,
cache_write.active_support;dur=0.14, instantiation.active_record;dur=4.87,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=21.53,
render.active_model_serializers;dur=66.54, process_action.action_controller;dur=196.32
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -53,11 +53,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-14T00:00:00.590995Z'
- '2025-08-15T18:00:00.991389Z'
X-Request-Id:
- c2ad7a99-2026-4166-802c-896981e41fab
- 4bdc97c0-5f30-4a37-ad4c-2740f11e7d1f
X-Runtime:
- '0.218861'
- '0.228150'
X-XSS-Protection:
- '0'
vary:
@ -71,7 +71,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -86,11 +86,11 @@ interactions:
uri: http://localhost:3000/api/v1/statuses
response:
body:
string: '{"id":"113998803609986512","created_at":"2025-02-13T21:54:57.663Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/113998803609986512","url":"http://localhost:3000/@mastodonpy_test/113998803609986512","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eToot,
string: '{"id":"115033972155464885","created_at":"2025-08-15T17:31:56.161Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/115033972155464885","url":"http://localhost:3000/@mastodonpy_test/115033972155464885","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eToot,
too!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":0,"statuses_count":2,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
test suite","website":null},"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":0,"statuses_count":2,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
@ -101,14 +101,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"7615e2a43cb61f27bb026557daedffcf"
- W/"5346ca0aa574491b683f87cc0f2abbcb"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.09, sql.active_record;dur=13.47, cache_generate.active_support;dur=4.61,
cache_write.active_support;dur=0.20, instantiation.active_record;dur=0.76,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=5.27,
render.active_model_serializers;dur=16.38, process_action.action_controller;dur=62.84
- cache_read.active_support;dur=0.05, sql.active_record;dur=37.29, cache_generate.active_support;dur=11.96,
cache_write.active_support;dur=0.12, instantiation.active_record;dur=4.91,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=70.95,
render.active_model_serializers;dur=50.04, process_action.action_controller;dur=273.02
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -120,11 +120,11 @@ interactions:
X-RateLimit-Remaining:
- '298'
X-RateLimit-Reset:
- '2025-02-14T00:00:00.700644Z'
- '2025-08-15T18:00:00.323655Z'
X-Request-Id:
- 2d890aad-84a5-44fa-9e50-89d288c1e07c
- 8028fa13-013a-4b3f-a85a-600514f88639
X-Runtime:
- '0.079579'
- '0.296505'
X-XSS-Protection:
- '0'
vary:
@ -138,7 +138,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -148,13 +148,13 @@ interactions:
User-Agent:
- tests/v311
method: POST
uri: http://localhost:3000/api/v1/statuses/113998803597680262/pin
uri: http://localhost:3000/api/v1/statuses/115033972137940116/pin
response:
body:
string: '{"id":"113998803597680262","created_at":"2025-02-13T21:54:57.480Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/113998803597680262","url":"http://localhost:3000/@mastodonpy_test/113998803597680262","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":true,"content":"\u003cp\u003eToot!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":0,"statuses_count":2,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
string: '{"id":"115033972137940116","created_at":"2025-08-15T17:31:55.880Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/115033972137940116","url":"http://localhost:3000/@mastodonpy_test/115033972137940116","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":true,"content":"\u003cp\u003eToot!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":0,"statuses_count":2,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
@ -165,14 +165,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"ac509e25e608ae2c5e77ea8f11524199"
- W/"b4ca9750648771b8a4b5fae8ecf43711"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.05, sql.active_record;dur=7.05, cache_generate.active_support;dur=2.82,
cache_write.active_support;dur=0.14, instantiation.active_record;dur=0.70,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=3.82,
render.active_model_serializers;dur=20.99, process_action.action_controller;dur=51.03
- cache_read.active_support;dur=0.05, sql.active_record;dur=8.61, cache_generate.active_support;dur=2.93,
cache_write.active_support;dur=0.14, instantiation.active_record;dur=0.71,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=6.83,
render.active_model_serializers;dur=17.76, process_action.action_controller;dur=55.97
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -184,11 +184,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T21:55:00.776507Z'
- '2025-08-15T17:35:00.403775Z'
X-Request-Id:
- 068d3c41-0dde-4c17-ae44-9f7976ac5103
- 990d2700-1aad-4dc8-ab87-8ba8d8b8f9dc
X-Runtime:
- '0.076281'
- '0.079904'
X-XSS-Protection:
- '0'
vary:
@ -202,7 +202,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -213,9 +213,9 @@ interactions:
uri: http://localhost:3000/api/v1/accounts/verify_credentials
response:
body:
string: '{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":0,"statuses_count":2,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"source":{"privacy":"private","sensitive":false,"language":null,"note":"I
string: '{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":0,"statuses_count":2,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"source":{"privacy":"private","sensitive":false,"language":null,"note":"I
walk funny","fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}],"role":{"id":"-99","name":"","permissions":"65536","color":"","highlighted":false}}'
headers:
Cache-Control:
@ -227,14 +227,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"5cf4561ddeda51cb87dc52a8c0e036bb"
- W/"cb3d97e6bfb3117b3f30995ec07c4ec1"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=0.92, cache_generate.active_support;dur=1.40,
cache_write.active_support;dur=0.09, instantiation.active_record;dur=0.29,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.49,
process_action.action_controller;dur=22.37
- cache_read.active_support;dur=0.04, sql.active_record;dur=1.12, cache_generate.active_support;dur=1.68,
cache_write.active_support;dur=0.13, instantiation.active_record;dur=0.35,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=5.00,
process_action.action_controller;dur=26.59
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -246,11 +246,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T21:55:00.880672Z'
- '2025-08-15T17:35:00.520688Z'
X-Request-Id:
- 55ececec-f273-47b5-a28f-80321f78afd4
- 8967f2a6-7fc8-4f77-b9a7-fe24378dc2a8
X-Runtime:
- '0.046527'
- '0.046685'
X-XSS-Protection:
- '0'
vary:
@ -264,7 +264,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -272,13 +272,13 @@ interactions:
User-Agent:
- tests/v311
method: GET
uri: http://localhost:3000/api/v1/accounts/113998801242326861/statuses?pinned=1
uri: http://localhost:3000/api/v1/accounts/115033965771926537/statuses?pinned=1
response:
body:
string: '[{"id":"113998803597680262","created_at":"2025-02-13T21:54:57.480Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/113998803597680262","url":"http://localhost:3000/@mastodonpy_test/113998803597680262","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":true,"content":"\u003cp\u003eToot!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":0,"statuses_count":2,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}]'
string: '[{"id":"115033972137940116","created_at":"2025-08-15T17:31:55.880Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/115033972137940116","url":"http://localhost:3000/@mastodonpy_test/115033972137940116","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":true,"content":"\u003cp\u003eToot!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":0,"statuses_count":2,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}]'
headers:
Cache-Control:
- private, no-store
@ -289,17 +289,17 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"a7678d7d4e059c03252bee0711729e57"
- W/"35110267db95b89b27d3c1ae9bcbe4f2"
Link:
- <http://localhost:3000/api/v1/accounts/113998801242326861/statuses?min_id=113998803597680262&pinned=1>;
- <http://localhost:3000/api/v1/accounts/115033965771926537/statuses?min_id=115033972137940116&pinned=1>;
rel="prev"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.06, sql.active_record;dur=4.14, cache_generate.active_support;dur=2.96,
cache_write.active_support;dur=0.13, instantiation.active_record;dur=0.63,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.65,
process_action.action_controller;dur=48.27
- cache_read.active_support;dur=0.06, sql.active_record;dur=4.25, cache_generate.active_support;dur=3.10,
cache_write.active_support;dur=0.13, instantiation.active_record;dur=0.60,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=5.00,
process_action.action_controller;dur=53.43
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -311,11 +311,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T21:55:00.938164Z'
- '2025-08-15T17:35:00.607763Z'
X-Request-Id:
- 70522ad1-92de-49eb-adae-01cbd960b301
- 4b4ebbd7-c476-4ff9-998b-ec71941ae7db
X-Runtime:
- '0.065179'
- '0.084701'
X-XSS-Protection:
- '0'
vary:
@ -329,7 +329,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -339,13 +339,13 @@ interactions:
User-Agent:
- tests/v311
method: POST
uri: http://localhost:3000/api/v1/statuses/113998803597680262/unpin
uri: http://localhost:3000/api/v1/statuses/115033972137940116/unpin
response:
body:
string: '{"id":"113998803597680262","created_at":"2025-02-13T21:54:57.480Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/113998803597680262","url":"http://localhost:3000/@mastodonpy_test/113998803597680262","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eToot!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":0,"statuses_count":2,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
string: '{"id":"115033972137940116","created_at":"2025-08-15T17:31:55.880Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/115033972137940116","url":"http://localhost:3000/@mastodonpy_test/115033972137940116","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eToot!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":0,"statuses_count":2,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
@ -356,14 +356,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"6126eb25c9ad3b3430bed2a1faef8e02"
- W/"617ade2e3ca2d2e458a90ae9e4fc591f"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.06, sql.active_record;dur=8.08, cache_generate.active_support;dur=2.95,
cache_write.active_support;dur=0.14, instantiation.active_record;dur=0.69,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=9.93,
render.active_model_serializers;dur=24.01, process_action.action_controller;dur=57.53
- cache_read.active_support;dur=0.05, sql.active_record;dur=10.15, cache_generate.active_support;dur=3.19,
cache_write.active_support;dur=0.23, instantiation.active_record;dur=1.81,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=11.55,
render.active_model_serializers;dur=18.92, process_action.action_controller;dur=60.18
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -375,11 +375,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T21:55:00.033164Z'
- '2025-08-15T17:35:00.724898Z'
X-Request-Id:
- f8abef79-299e-4414-855a-eda3a8ad96a3
- 776eff0f-b41d-42f7-b521-2c8ffb9fc6b3
X-Runtime:
- '0.073153'
- '0.083261'
X-XSS-Protection:
- '0'
vary:
@ -393,7 +393,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -403,14 +403,14 @@ interactions:
User-Agent:
- tests/v311
method: DELETE
uri: http://localhost:3000/api/v1/statuses/113998803609986512
uri: http://localhost:3000/api/v1/statuses/115033972155464885
response:
body:
string: '{"id":"113998803609986512","created_at":"2025-02-13T21:54:57.663Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/113998803609986512","url":"http://localhost:3000/@mastodonpy_test/113998803609986512","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"text":"Toot,
string: '{"id":"115033972155464885","created_at":"2025-08-15T17:31:56.161Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/115033972155464885","url":"http://localhost:3000/@mastodonpy_test/115033972155464885","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"text":"Toot,
too!","filtered":[],"reblog":null,"application":{"name":"Mastodon.py test
suite","website":null},"account":{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
suite","website":null},"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
@ -421,14 +421,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"7025d1cc049ce063170f3bcbffe752ac"
- W/"57515adf693ff68c43179fdd5edb368e"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.08, sql.active_record;dur=6.07, cache_generate.active_support;dur=2.90,
cache_write.active_support;dur=0.13, instantiation.active_record;dur=0.59,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=3.27,
render.active_model_serializers;dur=13.49, process_action.action_controller;dur=44.58
- cache_read.active_support;dur=0.05, sql.active_record;dur=7.36, cache_generate.active_support;dur=2.92,
cache_write.active_support;dur=0.14, instantiation.active_record;dur=0.65,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=4.63,
render.active_model_serializers;dur=13.40, process_action.action_controller;dur=56.50
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -440,11 +440,11 @@ interactions:
X-RateLimit-Remaining:
- '29'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.137355Z'
- '2025-08-15T18:00:00.847345Z'
X-Request-Id:
- 75514dc5-bcc4-463c-8c97-0e46662e61eb
- 7f522b73-c2ae-4787-b593-8f386e85a166
X-Runtime:
- '0.060543'
- '0.077139'
X-XSS-Protection:
- '0'
vary:
@ -458,7 +458,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -468,13 +468,13 @@ interactions:
User-Agent:
- tests/v311
method: DELETE
uri: http://localhost:3000/api/v1/statuses/113998803597680262
uri: http://localhost:3000/api/v1/statuses/115033972137940116
response:
body:
string: '{"id":"113998803597680262","created_at":"2025-02-13T21:54:57.480Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/113998803597680262","url":"http://localhost:3000/@mastodonpy_test/113998803597680262","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"text":"Toot!","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
string: '{"id":"115033972137940116","created_at":"2025-08-15T17:31:55.880Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/115033972137940116","url":"http://localhost:3000/@mastodonpy_test/115033972137940116","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"text":"Toot!","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
@ -485,14 +485,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"494ec230c2632a0df303414f97c5ace5"
- W/"390eca3e6fee592564e81b7a35ec8fc8"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.05, sql.active_record;dur=5.87, cache_generate.active_support;dur=2.69,
cache_write.active_support;dur=0.14, instantiation.active_record;dur=0.56,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=3.18,
render.active_model_serializers;dur=12.38, process_action.action_controller;dur=39.00
- cache_read.active_support;dur=0.06, sql.active_record;dur=7.18, cache_generate.active_support;dur=2.89,
cache_write.active_support;dur=0.14, instantiation.active_record;dur=0.62,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=4.48,
render.active_model_serializers;dur=13.59, process_action.action_controller;dur=48.29
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -504,11 +504,11 @@ interactions:
X-RateLimit-Remaining:
- '29'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.227661Z'
- '2025-08-15T18:00:00.963952Z'
X-Request-Id:
- 8b65615a-94ea-4f0a-8ba8-8218c522016b
- 9b6610b2-e412-4784-9f7b-ff5065d7c24d
X-Runtime:
- '0.054387'
- '0.068053'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -16,7 +16,7 @@ interactions:
uri: http://localhost:3000/api/v1/accounts/verify_credentials
response:
body:
string: '{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":null,"hide_collections":null,"noindex":false,"source":{"privacy":"private","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[],"fields":[],"role":{"id":"-99","name":"","permissions":"65536","color":"","highlighted":false}}'
string: '{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":null,"hide_collections":null,"noindex":false,"source":{"privacy":"private","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[],"fields":[],"role":{"id":"-99","name":"","permissions":"65536","color":"","highlighted":false}}'
headers:
Cache-Control:
- private, no-store
@ -27,14 +27,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"342bcc17c9c3527608ac3f1ab53a23a1"
- W/"1bed31bf37d24052d7eb4a8f3787a0f1"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.05, sql.active_record;dur=1.18, cache_generate.active_support;dur=1.78,
cache_write.active_support;dur=0.11, instantiation.active_record;dur=0.29,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.49,
process_action.action_controller;dur=23.60
- cache_read.active_support;dur=0.03, sql.active_record;dur=1.09, cache_generate.active_support;dur=1.50,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.24,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=3.71,
process_action.action_controller;dur=24.42
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -46,11 +46,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T21:55:00.680437Z'
- '2025-08-15T17:35:00.502735Z'
X-Request-Id:
- 117793a5-b6c0-4815-9e58-2e3339cb6094
- b52baa5c-2b08-497f-af31-87f3b385ed4c
X-Runtime:
- '0.050979'
- '0.045277'
X-XSS-Protection:
- '0'
vary:
@ -64,7 +64,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -72,10 +72,10 @@ interactions:
User-Agent:
- tests/v311
method: GET
uri: http://localhost:3000/api/v1/accounts/relationships?id=113998801242326861
uri: http://localhost:3000/api/v1/accounts/relationships?id=115033965771926537
response:
body:
string: '[{"id":"113998801242326861","following":false,"showing_reblogs":false,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":""}]'
string: '[{"id":"115033965771926537","following":false,"showing_reblogs":false,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":""}]'
headers:
Cache-Control:
- private, no-store
@ -86,15 +86,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"d258cdc34bb41c6d29013b9e79756e38"
- W/"f6e2c3257610f73c8b39d05b0e5b07ab"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=3.77, cache_generate.active_support;dur=1.11,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.23,
- cache_read.active_support;dur=0.02, sql.active_record;dur=3.41, cache_generate.active_support;dur=0.84,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.19,
start_processing.action_controller;dur=0.00, cache_read_multi.active_support;dur=0.06,
cache_write_multi.active_support;dur=0.10, render.active_model_serializers;dur=0.18,
process_action.action_controller;dur=36.70
cache_write_multi.active_support;dur=0.07, render.active_model_serializers;dur=0.13,
process_action.action_controller;dur=36.99
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -106,11 +106,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T21:55:00.739905Z'
- '2025-08-15T17:35:00.584484Z'
X-Request-Id:
- 90470cd7-193e-4a2e-b191-2893570e1e54
- 79e06a98-15b0-4d49-8e0f-54cfcfdd67db
X-Runtime:
- '0.054634'
- '0.072905'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -16,7 +16,7 @@ interactions:
uri: http://localhost:3000/api/v1/accounts/verify_credentials
response:
body:
string: '{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"source":{"privacy":"public","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[],"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}'
string: '{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"source":{"privacy":"public","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[],"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}'
headers:
Cache-Control:
- private, no-store
@ -27,14 +27,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"be8cf6e4ab6e27b1683738931eefd7a8"
- W/"901229a4c5a66235f03efff55b92086a"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.06, sql.active_record;dur=1.31, cache_generate.active_support;dur=1.91,
cache_write.active_support;dur=0.13, instantiation.active_record;dur=0.44,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=5.05,
process_action.action_controller;dur=24.03
- cache_read.active_support;dur=0.04, sql.active_record;dur=1.04, cache_generate.active_support;dur=1.48,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.35,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.23,
process_action.action_controller;dur=25.22
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -46,11 +46,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.989962Z'
- '2025-08-15T17:35:00.276342Z'
X-Request-Id:
- 5cac529d-db80-4b48-85e3-155142c40217
- 5f578b74-e207-440b-9866-c08cdf10f0df
X-Runtime:
- '0.041637'
- '0.045513'
X-XSS-Protection:
- '0'
vary:
@ -64,7 +64,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -76,10 +76,10 @@ interactions:
User-Agent:
- tests/v311
method: POST
uri: http://localhost:3000/api/v1/accounts/113998800956287197/follow
uri: http://localhost:3000/api/v1/accounts/115033965466813222/follow
response:
body:
string: '{"id":"113998800956287197","following":true,"showing_reblogs":true,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":"top
string: '{"id":"115033965466813222","following":true,"showing_reblogs":true,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":"top
ebayer gerne wieder"}'
headers:
Cache-Control:
@ -91,16 +91,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"d98a7a80f4f73f11f503a13f7d501948"
- W/"034b43e248e558e623e4c1e518e15209"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=5.98, cache_generate.active_support;dur=1.32,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.58,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=7.08,
cache_delete.active_support;dur=0.03, cache_read_multi.active_support;dur=0.04,
cache_write_multi.active_support;dur=0.07, render.active_model_serializers;dur=0.17,
process_action.action_controller;dur=39.20
- cache_read.active_support;dur=0.02, sql.active_record;dur=6.73, cache_generate.active_support;dur=0.87,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.50,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=7.29,
cache_delete.active_support;dur=0.03, cache_read_multi.active_support;dur=0.03,
cache_write_multi.active_support;dur=0.06, render.active_model_serializers;dur=0.15,
process_action.action_controller;dur=40.89
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -112,11 +112,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.051625Z'
- '2025-08-15T17:35:00.343930Z'
X-Request-Id:
- d3ff3839-4646-4f8f-804c-27532abe6ce9
- 50c5ffe0-04ff-48da-903f-2f1fdf4bbe76
X-Runtime:
- '0.056972'
- '0.061284'
X-XSS-Protection:
- '0'
vary:
@ -130,7 +130,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -141,7 +141,7 @@ interactions:
uri: http://localhost:3000/api/v1/accounts/verify_credentials
response:
body:
string: '{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"source":{"privacy":"public","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[],"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}'
string: '{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"source":{"privacy":"public","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[],"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}'
headers:
Cache-Control:
- private, no-store
@ -152,14 +152,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"fe51db460ccb094d558966d7279330cc"
- W/"f8044a322da9631ebc7b609d5f2b186b"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=1.16, cache_generate.active_support;dur=1.64,
cache_write.active_support;dur=0.11, instantiation.active_record;dur=0.41,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.51,
process_action.action_controller;dur=27.45
- cache_read.active_support;dur=0.03, sql.active_record;dur=1.08, cache_generate.active_support;dur=1.34,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.33,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.31,
process_action.action_controller;dur=25.43
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -171,11 +171,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.114888Z'
- '2025-08-15T17:35:00.419127Z'
X-Request-Id:
- 6e4da987-3fcf-431e-90bb-2216f9cc8af7
- a57b673c-6233-484a-b8e5-17a36a5d4e08
X-Runtime:
- '0.042560'
- '0.048291'
X-XSS-Protection:
- '0'
vary:
@ -189,7 +189,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -197,10 +197,10 @@ interactions:
User-Agent:
- tests/v311
method: GET
uri: http://localhost:3000/api/v1/accounts/relationships?id=113998800956287197
uri: http://localhost:3000/api/v1/accounts/relationships?id=115033965466813222
response:
body:
string: '[{"id":"113998800956287197","following":true,"showing_reblogs":true,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":"top
string: '[{"id":"115033965466813222","following":true,"showing_reblogs":true,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":"top
ebayer gerne wieder"}]'
headers:
Cache-Control:
@ -212,15 +212,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"01b311263d0925703c425f840b2794b9"
- W/"7157a81f286b83b9c9eb88e25f7da70a"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=1.47, cache_generate.active_support;dur=0.95,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.28,
start_processing.action_controller;dur=0.00, cache_read_multi.active_support;dur=0.04,
cache_write_multi.active_support;dur=0.07, render.active_model_serializers;dur=0.18,
process_action.action_controller;dur=24.59
- cache_read.active_support;dur=0.02, sql.active_record;dur=1.29, cache_generate.active_support;dur=0.93,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.31,
start_processing.action_controller;dur=0.00, cache_read_multi.active_support;dur=0.05,
cache_write_multi.active_support;dur=0.06, render.active_model_serializers;dur=0.17,
process_action.action_controller;dur=26.78
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -232,11 +232,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.176380Z'
- '2025-08-15T17:35:00.493555Z'
X-Request-Id:
- 9b58d0e1-3faf-4e03-85e8-92f924bc3de2
- f89c0cfa-2cbf-4a0c-aaff-a09de124b0ce
X-Runtime:
- '0.039918'
- '0.048128'
X-XSS-Protection:
- '0'
vary:
@ -250,7 +250,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -261,9 +261,9 @@ interactions:
uri: http://localhost:3000/api/v1/accounts/verify_credentials
response:
body:
string: '{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":1,"statuses_count":0,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"source":{"privacy":"private","sensitive":false,"language":null,"note":"I
string: '{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":1,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"source":{"privacy":"private","sensitive":false,"language":null,"note":"I
walk funny","fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}],"role":{"id":"-99","name":"","permissions":"65536","color":"","highlighted":false}}'
headers:
Cache-Control:
@ -275,14 +275,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"7f4bb62a5dde9650c950862bff8eec37"
- W/"7d4c1cabfcf5a62e2796eff3eca63771"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=0.95, cache_generate.active_support;dur=1.52,
cache_write.active_support;dur=0.11, instantiation.active_record;dur=0.30,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.23,
process_action.action_controller;dur=22.57
- cache_read.active_support;dur=0.03, sql.active_record;dur=0.94, cache_generate.active_support;dur=1.46,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.31,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.16,
process_action.action_controller;dur=24.86
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -294,11 +294,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.221401Z'
- '2025-08-15T17:35:00.552521Z'
X-Request-Id:
- 28a7b23b-b747-47b0-8eb5-8cd2898f5395
- a6cdb0ae-6bbc-4163-acb2-8e455ccedd18
X-Runtime:
- '0.037337'
- '0.045460'
X-XSS-Protection:
- '0'
vary:
@ -312,7 +312,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -322,10 +322,10 @@ interactions:
User-Agent:
- tests/v311
method: POST
uri: http://localhost:3000/api/v1/accounts/113998801242326861/remove_from_followers
uri: http://localhost:3000/api/v1/accounts/115033965771926537/remove_from_followers
response:
body:
string: '{"id":"113998801242326861","following":false,"showing_reblogs":false,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":""}'
string: '{"id":"115033965771926537","following":false,"showing_reblogs":false,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":""}'
headers:
Cache-Control:
- private, no-store
@ -336,16 +336,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"00115ab434f0e772e383b2ee37b1527d"
- W/"8e2cab3e00fb1a64fff4151237f5f53f"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=5.57, cache_generate.active_support;dur=0.95,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=4.75,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=15.14,
cache_delete.active_support;dur=0.03, cache_read_multi.active_support;dur=0.03,
cache_write_multi.active_support;dur=0.07, render.active_model_serializers;dur=0.18,
process_action.action_controller;dur=42.73
- cache_read.active_support;dur=0.02, sql.active_record;dur=6.62, cache_generate.active_support;dur=0.74,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=4.84,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=15.55,
cache_delete.active_support;dur=0.04, cache_read_multi.active_support;dur=0.02,
cache_write_multi.active_support;dur=0.05, render.active_model_serializers;dur=0.14,
process_action.action_controller;dur=45.17
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -357,11 +357,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.278139Z'
- '2025-08-15T17:35:00.626591Z'
X-Request-Id:
- e1ecfc7a-1946-4e0d-acd9-0daed14609b3
- a2fdee74-2f8f-4c43-98ac-9e5eea625b0a
X-Runtime:
- '0.057803'
- '0.066005'
X-XSS-Protection:
- '0'
vary:
@ -375,7 +375,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -386,7 +386,7 @@ interactions:
uri: http://localhost:3000/api/v1/accounts/verify_credentials
response:
body:
string: '{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"source":{"privacy":"public","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[],"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}'
string: '{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"source":{"privacy":"public","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[],"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}'
headers:
Cache-Control:
- private, no-store
@ -397,14 +397,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"be8cf6e4ab6e27b1683738931eefd7a8"
- W/"901229a4c5a66235f03efff55b92086a"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=1.10, cache_generate.active_support;dur=1.51,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.31,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.07,
process_action.action_controller;dur=22.58
- cache_read.active_support;dur=0.03, sql.active_record;dur=1.06, cache_generate.active_support;dur=1.43,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.26,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=3.92,
process_action.action_controller;dur=24.53
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -416,11 +416,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.341308Z'
- '2025-08-15T17:35:00.703311Z'
X-Request-Id:
- cfbd9691-c8de-4d75-b89e-448daea89858
- 606fc46d-576f-4da4-a88e-f85a2e2f047b
X-Runtime:
- '0.036781'
- '0.044362'
X-XSS-Protection:
- '0'
vary:
@ -434,7 +434,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -442,10 +442,10 @@ interactions:
User-Agent:
- tests/v311
method: GET
uri: http://localhost:3000/api/v1/accounts/relationships?id=113998800956287197
uri: http://localhost:3000/api/v1/accounts/relationships?id=115033965466813222
response:
body:
string: '[{"id":"113998800956287197","following":false,"showing_reblogs":false,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":"top
string: '[{"id":"115033965466813222","following":false,"showing_reblogs":false,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":"top
ebayer gerne wieder"}]'
headers:
Cache-Control:
@ -457,15 +457,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"75817cc38dda24059aaaef8fbfbbbe9d"
- W/"23c91b9c8837c8706a84003e61db2ff2"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=1.47, cache_generate.active_support;dur=0.96,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=2.89,
start_processing.action_controller;dur=0.00, cache_read_multi.active_support;dur=0.04,
cache_write_multi.active_support;dur=0.07, render.active_model_serializers;dur=0.19,
process_action.action_controller;dur=30.61
- cache_read.active_support;dur=0.02, sql.active_record;dur=1.24, cache_generate.active_support;dur=0.90,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.24,
start_processing.action_controller;dur=0.00, cache_read_multi.active_support;dur=0.03,
cache_write_multi.active_support;dur=0.05, render.active_model_serializers;dur=0.16,
process_action.action_controller;dur=25.59
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -477,11 +477,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.407719Z'
- '2025-08-15T17:35:00.769059Z'
X-Request-Id:
- 725f2257-b018-441b-84ee-ebf8324347ab
- 1d2a2106-b0e4-4550-8c41-6fdbe5715077
X-Runtime:
- '0.051733'
- '0.045161'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -16,7 +16,7 @@ interactions:
uri: http://localhost:3000/api/v1/accounts/search?q=admin&following=0&resolve=0
response:
body:
string: '[{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":null,"hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},{"id":"113998801102180301","username":"admin2","acct":"admin2","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin2","uri":"http://localhost:3000/users/admin2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":null,"hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]}]'
string: '[{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":null,"hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},{"id":"115033965617026193","username":"admin2","acct":"admin2","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin2","uri":"http://localhost:3000/users/admin2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":null,"hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]}]'
headers:
Cache-Control:
- private, no-store
@ -27,14 +27,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"6871e34f2f77ad3df8c03957c7cd37cc"
- W/"a17ba363ccf3252681e3b4d27bb0aecb"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- sql.active_record;dur=25.50, cache_read.active_support;dur=1.62, cache_generate.active_support;dur=14.98,
cache_write.active_support;dur=0.19, instantiation.active_record;dur=52.45,
start_processing.action_controller;dur=0.01, cache_fetch_hit.active_support;dur=0.00,
render.active_model_serializers;dur=34.46, process_action.action_controller;dur=200.14
- cache_read.active_support;dur=1.98, sql.active_record;dur=4.15, cache_generate.active_support;dur=1.19,
cache_write.active_support;dur=0.09, instantiation.active_record;dur=0.32,
start_processing.action_controller;dur=0.00, cache_fetch_hit.active_support;dur=0.00,
render.active_model_serializers;dur=4.83, process_action.action_controller;dur=35.65
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -46,11 +46,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T21:55:00.994787Z'
- '2025-08-15T17:35:00.672216Z'
X-Request-Id:
- 80be4d8e-e6f6-4a14-af15-181b71386bfd
- 427b6a4f-475d-40aa-a337-982c731e7aeb
X-Runtime:
- '0.353575'
- '0.069612'
X-XSS-Protection:
- '0'
vary:
@ -64,7 +64,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -76,10 +76,10 @@ interactions:
User-Agent:
- tests/v311
method: POST
uri: http://localhost:3000/api/v1/accounts/113998800956287197/follow
uri: http://localhost:3000/api/v1/accounts/115033965466813222/follow
response:
body:
string: '{"id":"113998800956287197","following":true,"showing_reblogs":true,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":""}'
string: '{"id":"115033965466813222","following":true,"showing_reblogs":true,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":""}'
headers:
Cache-Control:
- private, no-store
@ -90,16 +90,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"f68e56ceff6957908bad8784b4dbcaae"
- W/"2bdbe91ab3d01d6ec69a55952414f21e"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=17.25, cache_generate.active_support;dur=0.96,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.61,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=26.61,
cache_delete.active_support;dur=0.03, cache_read_multi.active_support;dur=0.04,
cache_write_multi.active_support;dur=0.09, render.active_model_serializers;dur=0.14,
process_action.action_controller;dur=103.77
- cache_read.active_support;dur=0.02, sql.active_record;dur=12.71, cache_generate.active_support;dur=0.90,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.44,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=13.13,
cache_delete.active_support;dur=0.06, cache_read_multi.active_support;dur=0.03,
cache_write_multi.active_support;dur=0.06, render.active_model_serializers;dur=0.14,
process_action.action_controller;dur=62.58
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -111,11 +111,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T21:55:00.196258Z'
- '2025-08-15T17:35:00.774670Z'
X-Request-Id:
- b386be38-430b-442f-9555-5d763a1c522c
- 2a957f04-0a6b-4a8f-b115-7cb63890eb79
X-Runtime:
- '0.123947'
- '0.084752'
X-XSS-Protection:
- '0'
vary:
@ -129,7 +129,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -140,7 +140,7 @@ interactions:
uri: http://localhost:3000/api/v1/accounts/search?q=admin&following=1&resolve=0
response:
body:
string: '[{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":0,"last_status_at":null,"hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]}]'
string: '[{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":0,"last_status_at":null,"hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]}]'
headers:
Cache-Control:
- private, no-store
@ -151,14 +151,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"6b99496fdfb17af1999090091030dd1a"
- W/"891e909f588f5cbc23d0b5882028c6ad"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=2.26, cache_generate.active_support;dur=1.69,
cache_write.active_support;dur=0.11, instantiation.active_record;dur=0.47,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=2.11,
process_action.action_controller;dur=25.33
- cache_read.active_support;dur=0.03, sql.active_record;dur=2.78, cache_generate.active_support;dur=1.30,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.38,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=1.67,
process_action.action_controller;dur=41.23
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -170,11 +170,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T21:55:00.325419Z'
- '2025-08-15T17:35:00.869815Z'
X-Request-Id:
- dcb241fb-5d41-4d1f-ac4a-cb382a795dfa
- 108d54e2-f954-4692-833d-f3cd616953c2
X-Runtime:
- '0.040554'
- '0.061737'
X-XSS-Protection:
- '0'
vary:
@ -188,7 +188,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -198,10 +198,10 @@ interactions:
User-Agent:
- tests/v311
method: POST
uri: http://localhost:3000/api/v1/accounts/113998800956287197/unfollow
uri: http://localhost:3000/api/v1/accounts/115033965466813222/unfollow
response:
body:
string: '{"id":"113998800956287197","following":false,"showing_reblogs":false,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":""}'
string: '{"id":"115033965466813222","following":false,"showing_reblogs":false,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":""}'
headers:
Cache-Control:
- private, no-store
@ -212,16 +212,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"944fa9eefa1743a8c904af6592c73dfb"
- W/"fe572ec4cc8d7e18e0f2b66935e77757"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.03, sql.active_record;dur=9.02, cache_generate.active_support;dur=1.46,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.54,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=12.49,
cache_delete.active_support;dur=0.04, cache_read_multi.active_support;dur=0.03,
cache_write_multi.active_support;dur=0.07, render.active_model_serializers;dur=0.17,
process_action.action_controller;dur=50.24
- cache_read.active_support;dur=0.02, sql.active_record;dur=15.24, cache_generate.active_support;dur=0.85,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=9.44,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=26.21,
cache_delete.active_support;dur=0.04, cache_read_multi.active_support;dur=0.06,
cache_write_multi.active_support;dur=0.07, render.active_model_serializers;dur=0.13,
process_action.action_controller;dur=88.70
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -233,11 +233,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T21:55:00.383456Z'
- '2025-08-15T17:35:00.953383Z'
X-Request-Id:
- c68d2239-b78c-487b-9524-9f6bca6de0d8
- d5d3f6a2-3c23-490b-97f5-c34b495c4d3e
X-Runtime:
- '0.066068'
- '0.111728'
X-XSS-Protection:
- '0'
vary:
@ -251,7 +251,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -277,10 +277,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=1.56, cache_generate.active_support;dur=0.93,
cache_write.active_support;dur=0.09, instantiation.active_record;dur=0.27,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.04,
process_action.action_controller;dur=20.84
- cache_read.active_support;dur=0.02, sql.active_record;dur=1.62, cache_generate.active_support;dur=0.80,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.21,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.03,
process_action.action_controller;dur=22.86
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -292,11 +292,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T21:55:00.457240Z'
- '2025-08-15T17:35:00.083985Z'
X-Request-Id:
- 3dfbb075-d483-45f8-bcf4-4c17775129b4
- bbf64d8e-dc43-4188-9e6e-2a75e70cab37
X-Runtime:
- '0.037665'
- '0.052157'
X-XSS-Protection:
- '0'
vary:
@ -310,7 +310,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -321,7 +321,7 @@ interactions:
uri: http://localhost:3000/api/v1/accounts/search?q=admin&following=0&resolve=0
response:
body:
string: '[{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":null,"hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},{"id":"113998801102180301","username":"admin2","acct":"admin2","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin2","uri":"http://localhost:3000/users/admin2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":null,"hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]}]'
string: '[{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":null,"hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},{"id":"115033965617026193","username":"admin2","acct":"admin2","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin2","uri":"http://localhost:3000/users/admin2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":null,"hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]}]'
headers:
Cache-Control:
- private, no-store
@ -332,14 +332,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"6871e34f2f77ad3df8c03957c7cd37cc"
- W/"a17ba363ccf3252681e3b4d27bb0aecb"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.09, sql.active_record;dur=3.06, cache_generate.active_support;dur=1.95,
cache_write.active_support;dur=0.12, instantiation.active_record;dur=0.74,
- cache_read.active_support;dur=0.07, sql.active_record;dur=2.09, cache_generate.active_support;dur=1.36,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.40,
start_processing.action_controller;dur=0.00, cache_fetch_hit.active_support;dur=0.00,
render.active_model_serializers;dur=4.37, process_action.action_controller;dur=47.68
render.active_model_serializers;dur=2.92, process_action.action_controller;dur=27.42
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -351,11 +351,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T21:55:00.510050Z'
- '2025-08-15T17:35:00.131417Z'
X-Request-Id:
- 924b175b-b938-4ee2-85ee-fb5d019332ad
- d46efb38-9c05-4faf-83a5-ee9cbbbd1f88
X-Runtime:
- '0.062600'
- '0.046908'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -1,13 +1,13 @@
interactions:
- request:
body: !!binary |
LS03OGU5MGQ0M2FiYTI3NmM2ZWM0YzY0ZTkyN2UxMTBhZA0KQ29udGVudC1EaXNwb3NpdGlvbjog
Zm9ybS1kYXRhOyBuYW1lPSJkaXNwbGF5X25hbWUiDQoNCkpvaG4gTGVubm9uDQotLTc4ZTkwZDQz
YWJhMjc2YzZlYzRjNjRlOTI3ZTExMGFkDQpDb250ZW50LURpc3Bvc2l0aW9uOiBmb3JtLWRhdGE7
IG5hbWU9Im5vdGUiDQoNCkkgd2FsayBmdW5ueQ0KLS03OGU5MGQ0M2FiYTI3NmM2ZWM0YzY0ZTky
N2UxMTBhZA0KQ29udGVudC1EaXNwb3NpdGlvbjogZm9ybS1kYXRhOyBuYW1lPSJoZWFkZXIiOyBm
aWxlbmFtZT0ibWFzdG9kb25weXVwbG9hZF8xNzM5NDgzNjk3LjI1ODMzMDhfYzA2ZTI0OTlkZDUw
NDc4MGJhNzNiMWIyMmExYTI1OGEuanBnIg0KQ29udGVudC1UeXBlOiBpbWFnZS9qcGVnDQoNCv/Y
LS0wMmUyZTQ2YTllZTY2NzhmNTc2MjY0N2U2Yjc3MGRkNw0KQ29udGVudC1EaXNwb3NpdGlvbjog
Zm9ybS1kYXRhOyBuYW1lPSJkaXNwbGF5X25hbWUiDQoNCkpvaG4gTGVubm9uDQotLTAyZTJlNDZh
OWVlNjY3OGY1NzYyNjQ3ZTZiNzcwZGQ3DQpDb250ZW50LURpc3Bvc2l0aW9uOiBmb3JtLWRhdGE7
IG5hbWU9Im5vdGUiDQoNCkkgd2FsayBmdW5ueQ0KLS0wMmUyZTQ2YTllZTY2NzhmNTc2MjY0N2U2
Yjc3MGRkNw0KQ29udGVudC1EaXNwb3NpdGlvbjogZm9ybS1kYXRhOyBuYW1lPSJoZWFkZXIiOyBm
aWxlbmFtZT0ibWFzdG9kb25weXVwbG9hZF8xNzU1Mjc5MTE1LjU2NDA1NTJfNDY4Mzc3OGQ0ZTM1
NDc0Nzg2M2U3MmI0OTFlZDVhMmIuanBnIg0KQ29udGVudC1UeXBlOiBpbWFnZS9qcGVnDQoNCv/Y
/+AAEEpGSUYAAQEBAEgASAAA/+ICHElDQ19QUk9GSUxFAAEBAAACDGxjbXMCEAAAbW50clJHQiBY
WVogB9wAAQAZAAMAKQA5YWNzcEFQUEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPbWAAEAAAAA
0y1sY21zAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKZGVz
@ -943,12 +943,12 @@ interactions:
tkgMCmGlSoojqYg3CP1hg5XagwuSZZej1N96VKgeHKRZSii9BM7fep2iK8u6Y69PxSpUVZtsdoSi
QO3N/mozLhcIxMSN89s+KVKgU4XMHLHOFF7LVZRJrFV22pUqBoKKIKucrmmTAxMZfilSoFO2xicu
MnjFStYMZkHV3XP4pUqC5Zbdy3MwJvu7U0AjASTLfOy9aVKgjPC5Yj9imCTIjyrGTjBn9aVKgY09
xujjo55uzvSpUqD/2Q0KLS03OGU5MGQ0M2FiYTI3NmM2ZWM0YzY0ZTkyN2UxMTBhZC0tDQo=
xujjo55uzvSpUqD/2Q0KLS0wMmUyZTQ2YTllZTY2NzhmNTc2MjY0N2U2Yjc3MGRkNy0tDQo=
headers:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -956,16 +956,16 @@ interactions:
Content-Length:
- '53747'
Content-Type:
- multipart/form-data; boundary=78e90d43aba276c6ec4c64e927e110ad
- multipart/form-data; boundary=02e2e46a9ee6678f5762647e6b770dd7
User-Agent:
- tests/v311
method: PATCH
uri: http://localhost:3000/api/v1/accounts/update_credentials
response:
body:
string: '{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":null,"hide_collections":null,"noindex":false,"source":{"privacy":"private","sensitive":false,"language":null,"note":"I
string: '{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":null,"hide_collections":null,"noindex":false,"source":{"privacy":"private","sensitive":false,"language":null,"note":"I
walk funny","fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}],"role":{"id":"-99","name":"","permissions":"65536","color":"","highlighted":false}}'
headers:
Cache-Control:
@ -977,14 +977,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"26709c68a66d2aa64d25479d33f6f728"
- W/"9b4783d611e0732ad813ec97618e72eb"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=4.53, cache_generate.active_support;dur=1.58,
cache_write.active_support;dur=0.12, instantiation.active_record;dur=0.55,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=9.28,
render.active_model_serializers;dur=4.65, process_action.action_controller;dur=73.13
- cache_read.active_support;dur=0.04, sql.active_record;dur=5.75, cache_generate.active_support;dur=1.45,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.52,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=6.82,
render.active_model_serializers;dur=4.48, process_action.action_controller;dur=69.52
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -996,11 +996,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T21:55:00.293394Z'
- '2025-08-15T17:35:00.607593Z'
X-Request-Id:
- 0b0b99f4-8708-4eb4-9f51-32754f922f43
- 21f23b90-be20-4b29-bd6f-3b1e91ef8244
X-Runtime:
- '0.088343'
- '0.091089'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -20,8 +20,11 @@ interactions:
uri: http://localhost:3000/api/v1/accounts/update_credentials
response:
body:
string: "{\"error\":\"\u30D0\u30EA\u30C7\u30FC\u30B7\u30E7\u30F3\u306B\u5931\u6557\u3057\u307E\u3057\u305F:
Fields\u306F4\u6587\u5B57\u4EE5\u5185\u3067\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044\",\"details\":{\"fields\":[{\"error\":\"ERR_TOO_LONG\",\"description\":\"\u306F4\u6587\u5B57\u4EE5\u5185\u3067\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044\"}]}}"
string: "{\"error\":\"\u30D0\u30EA\u30C7\u30FC\u30B7\u30E7\u30F3\u306B\u5931\
\u6557\u3057\u307E\u3057\u305F: Fields\u306F4\u6587\u5B57\u4EE5\u5185\u3067\
\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044\",\"details\":{\"fields\"\
:[{\"error\":\"ERR_TOO_LONG\",\"description\":\"\u306F4\u6587\u5B57\u4EE5\u5185\
\u3067\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044\"}]}}"
headers:
Cache-Control:
- private, no-store
@ -34,10 +37,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.53, cache_generate.active_support;dur=0.95,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.31,
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.43, cache_generate.active_support;dur=0.92,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.28,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.05,
process_action.action_controller;dur=471.62
process_action.action_controller;dur=597.36
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -49,11 +52,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T21:55:00.638018Z'
- '2025-08-15T17:35:00.757480Z'
X-Request-Id:
- a406b702-3383-4f20-b30c-490a28dcff8b
- c3fa06b5-2be6-42ed-9c6f-8dc16d3c2976
X-Runtime:
- '0.486913'
- '0.616715'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -16,7 +16,7 @@ interactions:
uri: http://localhost:3000/api/v1/accounts/lookup?acct=mastodonpy_test
response:
body:
string: '{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":null,"hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]}'
string: '{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":null,"hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]}'
headers:
Cache-Control:
- private, no-store
@ -27,14 +27,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"37c45a2db9bb1bd93afb73780ea7904d"
- W/"7a2203feba91845395e318ddb11091b9"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=1.33, cache_generate.active_support;dur=1.54,
cache_write.active_support;dur=0.09, instantiation.active_record;dur=0.31,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=3.53,
process_action.action_controller;dur=25.36
- cache_read.active_support;dur=0.04, sql.active_record;dur=1.30, cache_generate.active_support;dur=1.54,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.37,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=3.96,
process_action.action_controller;dur=30.19
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -46,11 +46,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T21:55:00.082091Z'
- '2025-08-15T17:35:00.798708Z'
X-Request-Id:
- cea72630-b87f-4ee7-bf58-75eda0ea7fdb
- 011cda24-f61b-4e29-ad0e-cde8cf402890
X-Runtime:
- '0.061118'
- '0.055306'
X-XSS-Protection:
- '0'
vary:
@ -64,7 +64,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -75,7 +75,7 @@ interactions:
uri: http://localhost:3000/api/v1/accounts/lookup?acct=mastodonpy_test_2
response:
body:
string: '{"id":"113998801391516277","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":null,"hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]}'
string: '{"id":"115033965921234147","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":null,"hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]}'
headers:
Cache-Control:
- private, no-store
@ -86,14 +86,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"32cb8842cf1cd5b75370f500a76286a0"
- W/"ff3926ea78e3beb0303960f37a0a42d0"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=1.47, cache_generate.active_support;dur=1.78,
cache_write.active_support;dur=0.11, instantiation.active_record;dur=0.44,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.33,
process_action.action_controller;dur=23.76
- cache_read.active_support;dur=0.03, sql.active_record;dur=1.37, cache_generate.active_support;dur=1.58,
cache_write.active_support;dur=0.11, instantiation.active_record;dur=0.37,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=3.84,
process_action.action_controller;dur=30.35
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -105,11 +105,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T21:55:00.138752Z'
- '2025-08-15T17:35:00.870683Z'
X-Request-Id:
- 5b9bba8e-fc71-4a42-adfb-bb081027dd23
- 8e62bba9-c8a3-460a-82dc-768bb69c0bf3
X-Runtime:
- '0.038692'
- '0.053055'
X-XSS-Protection:
- '0'
vary:
@ -123,7 +123,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -131,10 +131,10 @@ interactions:
User-Agent:
- tests/v311
method: GET
uri: http://localhost:3000/api/v1/accounts?id%5B%5D=113998801242326861&id%5B%5D=113998801391516277
uri: http://localhost:3000/api/v1/accounts?id%5B%5D=115033965771926537&id%5B%5D=115033965921234147
response:
body:
string: '[{"id":"113998801391516277","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":null,"hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":null,"hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]}]'
string: '[{"id":"115033965921234147","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":null,"hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":null,"hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]}]'
headers:
Cache-Control:
- private, no-store
@ -145,14 +145,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"c76ea59b7d9d22d1a15527efb5514759"
- W/"60cda1295d993416c042058bce83cc0f"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=2.98, sql.active_record;dur=1.99, cache_generate.active_support;dur=1.61,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.49,
- cache_read.active_support;dur=5.09, sql.active_record;dur=1.82, cache_generate.active_support;dur=1.54,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.47,
start_processing.action_controller;dur=0.00, cache_fetch_hit.active_support;dur=0.00,
render.active_model_serializers;dur=9.77, process_action.action_controller;dur=31.86
render.active_model_serializers;dur=11.91, process_action.action_controller;dur=37.53
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -164,11 +164,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T21:55:00.195284Z'
- '2025-08-15T17:35:00.945082Z'
X-Request-Id:
- 2d719294-594d-4d7f-b899-fab03000456c
- 55c490fa-07d2-4da6-8006-aa94310ce135
X-Runtime:
- '0.047473'
- '0.057035'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -16,9 +16,9 @@ interactions:
uri: http://localhost:3000/api/v1/admin/accounts?active=True
response:
body:
string: '[{"id":"113998801391516277","username":"mastodonpy_test_2","domain":null,"created_at":"2025-02-13T21:54:23.829Z","email":"mastodonpy_test_2@localhost","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":"ja","invite_request":null,"ips":[],"account":{"id":"113998801391516277","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"role":{"id":"-99","name":"","permissions":"65536","color":"","highlighted":false}},{"id":"113998801242326861","username":"mastodonpy_test","domain":null,"created_at":"2025-02-13T21:54:21.564Z","email":"mastodonpy_test@localhost","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":"ja","invite_request":null,"ips":[],"account":{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"role":{"id":"-99","name":"","permissions":"65536","color":"","highlighted":false}},{"id":"113998801102180301","username":"admin2","domain":null,"created_at":"2025-02-13T21:54:19.408Z","email":"zerocool@example.com","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":"de","invite_request":null,"ips":[],"account":{"id":"113998801102180301","username":"admin2","acct":"admin2","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin2","uri":"http://localhost:3000/users/admin2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":null,"hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}},{"id":"113998800956287197","username":"admin","domain":null,"created_at":"2025-02-13T21:54:17.053Z","email":"admin@localhost","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":null,"invite_request":null,"ips":[],"account":{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}]'
string: '[{"id":"115033965921234147","username":"mastodonpy_test_2","domain":null,"created_at":"2025-08-15T17:30:21.033Z","email":"mastodonpy_test_2@localhost","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":"ja","invite_request":null,"ips":[],"account":{"id":"115033965921234147","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"role":{"id":"-99","name":"","permissions":"65536","color":"","highlighted":false}},{"id":"115033965771926537","username":"mastodonpy_test","domain":null,"created_at":"2025-08-15T17:30:18.756Z","email":"mastodonpy_test@localhost","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":"ja","invite_request":null,"ips":[],"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"role":{"id":"-99","name":"","permissions":"65536","color":"","highlighted":false}},{"id":"115033965617026193","username":"admin2","domain":null,"created_at":"2025-08-15T17:30:16.385Z","email":"zerocool@example.com","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":"de","invite_request":null,"ips":[],"account":{"id":"115033965617026193","username":"admin2","acct":"admin2","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin2","uri":"http://localhost:3000/users/admin2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":null,"hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}},{"id":"115033965466813222","username":"admin","domain":null,"created_at":"2025-08-15T17:30:13.983Z","email":"admin@localhost","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":null,"invite_request":null,"ips":[],"account":{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}]'
headers:
Cache-Control:
- private, no-store
@ -29,17 +29,17 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"4f6890d5d53f58c2d8c206e8dbb90c70"
- W/"fd412f5cc5b434e6f927a350347df16d"
Link:
- <http://localhost:3000/api/v1/admin/accounts?active=True&min_id=113998801391516277>;
- <http://localhost:3000/api/v1/admin/accounts?active=True&min_id=115033965921234147>;
rel="prev"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.15, sql.active_record;dur=5.02, cache_generate.active_support;dur=1.94,
cache_write.active_support;dur=3.28, instantiation.active_record;dur=0.73,
start_processing.action_controller;dur=0.01, cache_fetch_hit.active_support;dur=0.01,
render.active_model_serializers;dur=18.18, process_action.action_controller;dur=52.50
- cache_read.active_support;dur=0.11, sql.active_record;dur=4.51, cache_generate.active_support;dur=1.34,
cache_write.active_support;dur=0.11, instantiation.active_record;dur=0.64,
start_processing.action_controller;dur=0.00, cache_fetch_hit.active_support;dur=0.01,
render.active_model_serializers;dur=8.85, process_action.action_controller;dur=45.23
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -51,11 +51,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.473268Z'
- '2025-08-15T17:35:00.862325Z'
X-Request-Id:
- a7a82210-35a4-4e8f-b197-e1dff326f5e2
- 3531a7b2-08e1-4e6b-a1a0-1662fa1f14a1
X-Runtime:
- '0.075813'
- '0.072858'
X-XSS-Protection:
- '0'
vary:
@ -69,7 +69,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -80,7 +80,7 @@ interactions:
uri: http://localhost:3000/api/v1/accounts/verify_credentials
response:
body:
string: '{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"source":{"privacy":"public","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[],"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}'
string: '{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"source":{"privacy":"public","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[],"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}'
headers:
Cache-Control:
- private, no-store
@ -91,14 +91,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"be8cf6e4ab6e27b1683738931eefd7a8"
- W/"901229a4c5a66235f03efff55b92086a"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=1.18, cache_generate.active_support;dur=1.67,
cache_write.active_support;dur=0.11, instantiation.active_record;dur=0.34,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.51,
process_action.action_controller;dur=23.37
- cache_read.active_support;dur=0.03, sql.active_record;dur=1.03, cache_generate.active_support;dur=1.53,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.30,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.15,
process_action.action_controller;dur=24.71
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -110,11 +110,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.545195Z'
- '2025-08-15T17:35:00.929922Z'
X-Request-Id:
- a99d2d37-2655-481f-bbe4-df2a7b92421f
- 2837bdf1-ceb5-477f-ba8a-aa643a74c08e
X-Runtime:
- '0.038842'
- '0.043909'
X-XSS-Protection:
- '0'
vary:
@ -128,7 +128,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -136,10 +136,10 @@ interactions:
User-Agent:
- tests/v311
method: GET
uri: http://localhost:3000/api/v1/admin/accounts/113998800956287197
uri: http://localhost:3000/api/v1/admin/accounts/115033965466813222
response:
body:
string: '{"id":"113998800956287197","username":"admin","domain":null,"created_at":"2025-02-13T21:54:17.053Z","email":"admin@localhost","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":null,"invite_request":null,"ips":[],"account":{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}'
string: '{"id":"115033965466813222","username":"admin","domain":null,"created_at":"2025-08-15T17:30:13.983Z","email":"admin@localhost","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":null,"invite_request":null,"ips":[],"account":{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}'
headers:
Cache-Control:
- private, no-store
@ -150,14 +150,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"cdebbc2b35de1108888a77b4f7cf4af7"
- W/"25b009d4ec6b11233d0231beb0d6e5cf"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=1.69, cache_generate.active_support;dur=1.69,
cache_write.active_support;dur=0.13, instantiation.active_record;dur=0.52,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=7.50,
process_action.action_controller;dur=28.19
- cache_read.active_support;dur=0.04, sql.active_record;dur=1.44, cache_generate.active_support;dur=1.36,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.43,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=7.08,
process_action.action_controller;dur=29.29
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -169,11 +169,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.605625Z'
- '2025-08-15T17:35:00.001805Z'
X-Request-Id:
- 6316ab6e-655b-42d1-8005-4373e8d2d07c
- a17eae4a-1277-4a56-8876-bd599feabe8b
X-Runtime:
- '0.045574'
- '0.049517'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -16,9 +16,9 @@ interactions:
uri: http://localhost:3000/api/v1/admin/accounts?active=True
response:
body:
string: '[{"id":"113998801391516277","username":"mastodonpy_test_2","domain":null,"created_at":"2025-02-13T21:54:23.829Z","email":"mastodonpy_test_2@localhost","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":"ja","invite_request":null,"ips":[],"account":{"id":"113998801391516277","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"role":{"id":"-99","name":"","permissions":"65536","color":"","highlighted":false}},{"id":"113998801242326861","username":"mastodonpy_test","domain":null,"created_at":"2025-02-13T21:54:21.564Z","email":"mastodonpy_test@localhost","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":"ja","invite_request":null,"ips":[],"account":{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"role":{"id":"-99","name":"","permissions":"65536","color":"","highlighted":false}},{"id":"113998801102180301","username":"admin2","domain":null,"created_at":"2025-02-13T21:54:19.408Z","email":"zerocool@example.com","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":"de","invite_request":null,"ips":[],"account":{"id":"113998801102180301","username":"admin2","acct":"admin2","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin2","uri":"http://localhost:3000/users/admin2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":null,"hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}},{"id":"113998800956287197","username":"admin","domain":null,"created_at":"2025-02-13T21:54:17.053Z","email":"admin@localhost","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":null,"invite_request":null,"ips":[],"account":{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}]'
string: '[{"id":"115033965921234147","username":"mastodonpy_test_2","domain":null,"created_at":"2025-08-15T17:30:21.033Z","email":"mastodonpy_test_2@localhost","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":"ja","invite_request":null,"ips":[],"account":{"id":"115033965921234147","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"role":{"id":"-99","name":"","permissions":"65536","color":"","highlighted":false}},{"id":"115033965771926537","username":"mastodonpy_test","domain":null,"created_at":"2025-08-15T17:30:18.756Z","email":"mastodonpy_test@localhost","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":"ja","invite_request":null,"ips":[],"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"role":{"id":"-99","name":"","permissions":"65536","color":"","highlighted":false}},{"id":"115033965617026193","username":"admin2","domain":null,"created_at":"2025-08-15T17:30:16.385Z","email":"zerocool@example.com","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":"de","invite_request":null,"ips":[],"account":{"id":"115033965617026193","username":"admin2","acct":"admin2","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin2","uri":"http://localhost:3000/users/admin2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":null,"hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}},{"id":"115033965466813222","username":"admin","domain":null,"created_at":"2025-08-15T17:30:13.983Z","email":"admin@localhost","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":null,"invite_request":null,"ips":[],"account":{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}]'
headers:
Cache-Control:
- private, no-store
@ -29,17 +29,17 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"4f6890d5d53f58c2d8c206e8dbb90c70"
- W/"fd412f5cc5b434e6f927a350347df16d"
Link:
- <http://localhost:3000/api/v1/admin/accounts?active=True&min_id=113998801391516277>;
- <http://localhost:3000/api/v1/admin/accounts?active=True&min_id=115033965921234147>;
rel="prev"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.12, sql.active_record;dur=1.89, cache_generate.active_support;dur=1.50,
cache_write.active_support;dur=0.12, instantiation.active_record;dur=0.78,
- cache_read.active_support;dur=0.11, sql.active_record;dur=4.11, cache_generate.active_support;dur=1.50,
cache_write.active_support;dur=0.11, instantiation.active_record;dur=0.62,
start_processing.action_controller;dur=0.00, cache_fetch_hit.active_support;dur=0.01,
render.active_model_serializers;dur=8.46, process_action.action_controller;dur=33.46
render.active_model_serializers;dur=8.44, process_action.action_controller;dur=42.81
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -51,11 +51,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.674457Z'
- '2025-08-15T17:35:00.098830Z'
X-Request-Id:
- 98d80542-18be-4338-abd4-1aff895d6190
- bd489d49-bb06-45fe-b35f-b6031261e15e
X-Runtime:
- '0.048316'
- '0.065353'
X-XSS-Protection:
- '0'
vary:
@ -69,7 +69,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -80,7 +80,7 @@ interactions:
uri: http://localhost:3000/api/v1/accounts/verify_credentials
response:
body:
string: '{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"source":{"privacy":"public","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[],"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}'
string: '{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"source":{"privacy":"public","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[],"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}'
headers:
Cache-Control:
- private, no-store
@ -91,14 +91,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"be8cf6e4ab6e27b1683738931eefd7a8"
- W/"901229a4c5a66235f03efff55b92086a"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=1.25, cache_generate.active_support;dur=1.60,
cache_write.active_support;dur=0.11, instantiation.active_record;dur=0.34,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.69,
process_action.action_controller;dur=23.28
- cache_read.active_support;dur=0.03, sql.active_record;dur=0.99, cache_generate.active_support;dur=1.32,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.26,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=3.89,
process_action.action_controller;dur=24.10
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -110,11 +110,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.726376Z'
- '2025-08-15T17:35:00.167993Z'
X-Request-Id:
- 181b6275-4e81-4173-aa10-41afe9c5e178
- b6b58c27-85fb-4bc7-af09-975cdf55acc0
X-Runtime:
- '0.038194'
- '0.047418'
X-XSS-Protection:
- '0'
vary:
@ -128,7 +128,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -136,10 +136,10 @@ interactions:
User-Agent:
- tests/v311
method: GET
uri: http://localhost:3000/api/v1/admin/accounts/113998800956287197
uri: http://localhost:3000/api/v1/admin/accounts/115033965466813222
response:
body:
string: '{"id":"113998800956287197","username":"admin","domain":null,"created_at":"2025-02-13T21:54:17.053Z","email":"admin@localhost","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":null,"invite_request":null,"ips":[],"account":{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}'
string: '{"id":"115033965466813222","username":"admin","domain":null,"created_at":"2025-08-15T17:30:13.983Z","email":"admin@localhost","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":null,"invite_request":null,"ips":[],"account":{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}'
headers:
Cache-Control:
- private, no-store
@ -150,14 +150,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"cdebbc2b35de1108888a77b4f7cf4af7"
- W/"25b009d4ec6b11233d0231beb0d6e5cf"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=1.80, cache_generate.active_support;dur=1.52,
cache_write.active_support;dur=0.29, instantiation.active_record;dur=0.45,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=6.57,
process_action.action_controller;dur=26.35
- cache_read.active_support;dur=0.03, sql.active_record;dur=1.50, cache_generate.active_support;dur=1.37,
cache_write.active_support;dur=0.09, instantiation.active_record;dur=0.43,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=7.03,
process_action.action_controller;dur=29.02
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -169,11 +169,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.783115Z'
- '2025-08-15T17:35:00.237786Z'
X-Request-Id:
- b5eba73c-a427-4553-bbb6-c9f3ffe7cc57
- bad6624e-a44d-4c66-9f97-d557ef637d9f
X-Runtime:
- '0.041024'
- '0.047562'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -16,7 +16,7 @@ interactions:
uri: http://localhost:3000/api/v2/admin/accounts?origin=local&permissions=staff
response:
body:
string: '[{"id":"113998801102180301","username":"admin2","domain":null,"created_at":"2025-02-13T21:54:19.408Z","email":"zerocool@example.com","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":"de","invite_request":null,"ips":[],"account":{"id":"113998801102180301","username":"admin2","acct":"admin2","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin2","uri":"http://localhost:3000/users/admin2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":null,"hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}},{"id":"113998800956287197","username":"admin","domain":null,"created_at":"2025-02-13T21:54:17.053Z","email":"admin@localhost","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":null,"invite_request":null,"ips":[],"account":{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}]'
string: '[{"id":"115033965617026193","username":"admin2","domain":null,"created_at":"2025-08-15T17:30:16.385Z","email":"zerocool@example.com","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":"de","invite_request":null,"ips":[],"account":{"id":"115033965617026193","username":"admin2","acct":"admin2","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin2","uri":"http://localhost:3000/users/admin2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":null,"hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}},{"id":"115033965466813222","username":"admin","domain":null,"created_at":"2025-08-15T17:30:13.983Z","email":"admin@localhost","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":null,"invite_request":null,"ips":[],"account":{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}]'
headers:
Cache-Control:
- private, no-store
@ -27,17 +27,17 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"66721b57043a7339199c55807b66bad1"
- W/"b46c96c8a927e8929f6ab648df98ff88"
Link:
- <http://localhost:3000/api/v2/admin/accounts?min_id=113998801102180301&origin=local&permissions=staff>;
- <http://localhost:3000/api/v2/admin/accounts?min_id=115033965617026193&origin=local&permissions=staff>;
rel="prev"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.07, sql.active_record;dur=2.01, cache_generate.active_support;dur=1.47,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.57,
- cache_read.active_support;dur=0.06, sql.active_record;dur=1.90, cache_generate.active_support;dur=1.33,
cache_write.active_support;dur=0.09, instantiation.active_record;dur=0.47,
start_processing.action_controller;dur=0.00, cache_fetch_hit.active_support;dur=0.00,
render.active_model_serializers;dur=4.49, process_action.action_controller;dur=37.68
render.active_model_serializers;dur=4.10, process_action.action_controller;dur=30.99
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -49,11 +49,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.855309Z'
- '2025-08-15T17:35:00.334761Z'
X-Request-Id:
- 024bb6ab-d3aa-4030-86b4-a32fa1b66af0
- 73d6da4e-a875-4827-8484-19dc034b8d3a
X-Runtime:
- '0.055653'
- '0.053846'
X-XSS-Protection:
- '0'
vary:
@ -67,7 +67,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -78,7 +78,7 @@ interactions:
uri: http://localhost:3000/api/v1/accounts/verify_credentials
response:
body:
string: '{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"source":{"privacy":"public","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[],"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}'
string: '{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"source":{"privacy":"public","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[],"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}'
headers:
Cache-Control:
- private, no-store
@ -89,14 +89,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"be8cf6e4ab6e27b1683738931eefd7a8"
- W/"901229a4c5a66235f03efff55b92086a"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=1.08, cache_generate.active_support;dur=1.60,
cache_write.active_support;dur=0.12, instantiation.active_record;dur=0.34,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.23,
process_action.action_controller;dur=22.71
- cache_read.active_support;dur=0.04, sql.active_record;dur=1.11, cache_generate.active_support;dur=1.48,
cache_write.active_support;dur=0.09, instantiation.active_record;dur=0.31,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.16,
process_action.action_controller;dur=32.32
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -108,11 +108,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.910225Z'
- '2025-08-15T17:35:00.439994Z'
X-Request-Id:
- 90994afc-ad68-4ed3-8a9c-bcba1b28a10f
- d9e3c2c4-c462-47e5-80e8-ea7fe8cb89a8
X-Runtime:
- '0.037701'
- '0.051683'
X-XSS-Protection:
- '0'
vary:
@ -126,7 +126,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -134,10 +134,10 @@ interactions:
User-Agent:
- tests/v311
method: GET
uri: http://localhost:3000/api/v1/admin/accounts/113998800956287197
uri: http://localhost:3000/api/v1/admin/accounts/115033965466813222
response:
body:
string: '{"id":"113998800956287197","username":"admin","domain":null,"created_at":"2025-02-13T21:54:17.053Z","email":"admin@localhost","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":null,"invite_request":null,"ips":[],"account":{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}'
string: '{"id":"115033965466813222","username":"admin","domain":null,"created_at":"2025-08-15T17:30:13.983Z","email":"admin@localhost","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":null,"invite_request":null,"ips":[],"account":{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}'
headers:
Cache-Control:
- private, no-store
@ -148,14 +148,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"cdebbc2b35de1108888a77b4f7cf4af7"
- W/"25b009d4ec6b11233d0231beb0d6e5cf"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.03, sql.active_record;dur=1.36, cache_generate.active_support;dur=1.26,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.42,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=5.95,
process_action.action_controller;dur=25.17
- cache_read.active_support;dur=0.03, sql.active_record;dur=1.53, cache_generate.active_support;dur=1.22,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.39,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=5.56,
process_action.action_controller;dur=27.52
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -167,11 +167,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.965605Z'
- '2025-08-15T17:35:00.510330Z'
X-Request-Id:
- d6aab215-01cc-4216-8ad4-07ebfb9860cc
- 104c61c8-ef6a-4d53-8969-06d0a3330f4b
X-Runtime:
- '0.039711'
- '0.046248'
X-XSS-Protection:
- '0'
vary:
@ -185,7 +185,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -211,10 +211,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.05, sql.active_record;dur=7.67, cache_generate.active_support;dur=1.15,
cache_write.active_support;dur=0.09, instantiation.active_record;dur=0.42,
- cache_read.active_support;dur=0.02, sql.active_record;dur=1.10, cache_generate.active_support;dur=0.80,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.30,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.04,
process_action.action_controller;dur=31.61
process_action.action_controller;dur=24.46
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -226,11 +226,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.033374Z'
- '2025-08-15T17:35:00.590728Z'
X-Request-Id:
- 5e76cee6-d406-4d88-b1ac-a2ccf575f307
- 48efa151-6c15-415f-8539-6f6984e9f912
X-Runtime:
- '0.047501'
- '0.047957'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -20,7 +20,7 @@ interactions:
uri: http://localhost:3000/api/v1/admin/canonical_email_blocks
response:
body:
string: '{"id":"6","canonical_email_hash":"973dfe463ec85785f5f95af5ba3906eedb2d931c24e69824a89ea65dba4e813b"}'
string: '{"id":"2","canonical_email_hash":"973dfe463ec85785f5f95af5ba3906eedb2d931c24e69824a89ea65dba4e813b"}'
headers:
Cache-Control:
- private, no-store
@ -31,14 +31,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"0d46a81545add481c9d66fe9f9d16882"
- W/"266b1654e29c4b0604ad5172b546c87d"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.34, sql.active_record;dur=13.93, cache_generate.active_support;dur=27.19,
cache_write.active_support;dur=0.95, instantiation.active_record;dur=4.03,
start_processing.action_controller;dur=0.01, transaction.active_record;dur=12.39,
render.active_model_serializers;dur=1.43, process_action.action_controller;dur=71.20
- cache_read.active_support;dur=0.03, sql.active_record;dur=9.97, cache_generate.active_support;dur=1.25,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.38,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=9.74,
render.active_model_serializers;dur=0.15, process_action.action_controller;dur=37.62
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -50,11 +50,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-14T20:45:00.466865Z'
- '2025-08-15T17:35:00.195320Z'
X-Request-Id:
- faf45eb4-356b-4322-85f7-3f0314a59285
- 03b832ff-cad0-4b0b-9a5f-0ce314038c07
X-Runtime:
- '0.209096'
- '0.062111'
X-XSS-Protection:
- '0'
vary:
@ -68,7 +68,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -83,7 +83,7 @@ interactions:
uri: http://localhost:3000/api/v1/admin/canonical_email_blocks/test
response:
body:
string: '[{"id":"6","canonical_email_hash":"973dfe463ec85785f5f95af5ba3906eedb2d931c24e69824a89ea65dba4e813b"}]'
string: '[{"id":"2","canonical_email_hash":"973dfe463ec85785f5f95af5ba3906eedb2d931c24e69824a89ea65dba4e813b"}]'
headers:
Cache-Control:
- private, no-store
@ -94,14 +94,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"0169178a96c87e20abde86b2ad751e7f"
- W/"3952e8dcc09991292223b1ea94a25f45"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=1.19, cache_generate.active_support;dur=1.27,
cache_write.active_support;dur=0.11, instantiation.active_record;dur=0.74,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.20,
process_action.action_controller;dur=114.74
- cache_read.active_support;dur=0.02, sql.active_record;dur=1.18, cache_generate.active_support;dur=1.31,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=3.76,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.18,
process_action.action_controller;dur=30.00
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -113,11 +113,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-14T20:45:00.561581Z'
- '2025-08-15T17:35:00.261149Z'
X-Request-Id:
- 482fd952-0756-484d-a5f0-3d5a323d2957
- b8b60c8b-216e-4d5d-89bb-9490b718f81c
X-Runtime:
- '0.138734'
- '0.054021'
X-XSS-Protection:
- '0'
vary:
@ -131,7 +131,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -146,7 +146,7 @@ interactions:
uri: http://localhost:3000/api/v1/admin/canonical_email_blocks/test
response:
body:
string: '[{"id":"6","canonical_email_hash":"973dfe463ec85785f5f95af5ba3906eedb2d931c24e69824a89ea65dba4e813b"}]'
string: '[{"id":"2","canonical_email_hash":"973dfe463ec85785f5f95af5ba3906eedb2d931c24e69824a89ea65dba4e813b"}]'
headers:
Cache-Control:
- private, no-store
@ -157,14 +157,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"0169178a96c87e20abde86b2ad751e7f"
- W/"3952e8dcc09991292223b1ea94a25f45"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.92, cache_generate.active_support;dur=3.49,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.30,
- cache_read.active_support;dur=0.02, sql.active_record;dur=1.13, cache_generate.active_support;dur=1.03,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.56,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.17,
process_action.action_controller;dur=21.22
process_action.action_controller;dur=25.64
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -176,11 +176,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-14T20:45:00.703316Z'
- '2025-08-15T17:35:00.320780Z'
X-Request-Id:
- 893394cb-58dd-4c1c-bc14-fd47806816f4
- 7812a1ff-05bb-40b6-841d-03d3ebab942e
X-Runtime:
- '0.045988'
- '0.046443'
X-XSS-Protection:
- '0'
vary:
@ -194,7 +194,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -209,7 +209,7 @@ interactions:
uri: http://localhost:3000/api/v1/admin/canonical_email_blocks/test
response:
body:
string: '[{"id":"6","canonical_email_hash":"973dfe463ec85785f5f95af5ba3906eedb2d931c24e69824a89ea65dba4e813b"}]'
string: '[{"id":"2","canonical_email_hash":"973dfe463ec85785f5f95af5ba3906eedb2d931c24e69824a89ea65dba4e813b"}]'
headers:
Cache-Control:
- private, no-store
@ -220,14 +220,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"0169178a96c87e20abde86b2ad751e7f"
- W/"3952e8dcc09991292223b1ea94a25f45"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.95, cache_generate.active_support;dur=0.83,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.35,
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.99, cache_generate.active_support;dur=0.97,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.47,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.16,
process_action.action_controller;dur=23.38
process_action.action_controller;dur=25.41
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -239,11 +239,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-14T20:45:00.751572Z'
- '2025-08-15T17:35:00.376275Z'
X-Request-Id:
- 2cdc282b-1f99-4323-968c-b85b9c06dc7b
- d3e03e57-372f-4c4f-8984-28c58eb926b9
X-Runtime:
- '0.044807'
- '0.045481'
X-XSS-Protection:
- '0'
vary:
@ -257,7 +257,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -272,7 +272,7 @@ interactions:
uri: http://localhost:3000/api/v1/admin/canonical_email_blocks/test
response:
body:
string: '[{"id":"6","canonical_email_hash":"973dfe463ec85785f5f95af5ba3906eedb2d931c24e69824a89ea65dba4e813b"}]'
string: '[{"id":"2","canonical_email_hash":"973dfe463ec85785f5f95af5ba3906eedb2d931c24e69824a89ea65dba4e813b"}]'
headers:
Cache-Control:
- private, no-store
@ -283,14 +283,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"0169178a96c87e20abde86b2ad751e7f"
- W/"3952e8dcc09991292223b1ea94a25f45"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=1.08, cache_generate.active_support;dur=1.04,
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.89, cache_generate.active_support;dur=0.97,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.38,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.16,
process_action.action_controller;dur=25.25
process_action.action_controller;dur=24.70
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -302,11 +302,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-14T20:45:00.804520Z'
- '2025-08-15T17:35:00.430496Z'
X-Request-Id:
- a2936c17-c2bc-418d-8b92-acaac66c4ebb
- e66d809d-9611-49bf-bfc5-cc1c3980e095
X-Runtime:
- '0.052291'
- '0.044485'
X-XSS-Protection:
- '0'
vary:
@ -320,7 +320,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -331,7 +331,7 @@ interactions:
uri: http://localhost:3000/api/v1/admin/canonical_email_blocks
response:
body:
string: '[{"id":"6","canonical_email_hash":"973dfe463ec85785f5f95af5ba3906eedb2d931c24e69824a89ea65dba4e813b"}]'
string: '[{"id":"2","canonical_email_hash":"973dfe463ec85785f5f95af5ba3906eedb2d931c24e69824a89ea65dba4e813b"}]'
headers:
Cache-Control:
- private, no-store
@ -342,16 +342,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"0169178a96c87e20abde86b2ad751e7f"
- W/"3952e8dcc09991292223b1ea94a25f45"
Link:
- <http://localhost:3000/api/v1/admin/canonical_email_blocks?min_id=6>; rel="prev"
- <http://localhost:3000/api/v1/admin/canonical_email_blocks?min_id=2>; rel="prev"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.99, cache_generate.active_support;dur=0.91,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.24,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.15,
process_action.action_controller;dur=21.70
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.94, cache_generate.active_support;dur=0.91,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.35,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.17,
process_action.action_controller;dur=27.02
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -363,11 +363,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-14T20:45:00.865406Z'
- '2025-08-15T17:35:00.486412Z'
X-Request-Id:
- 3718b982-745e-4602-8c72-32ae87f4d3f2
- 395c55d8-e527-4010-ac64-70aecbb6eef9
X-Runtime:
- '0.051593'
- '0.047429'
X-XSS-Protection:
- '0'
vary:
@ -381,7 +381,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -391,7 +391,7 @@ interactions:
User-Agent:
- tests/v311
method: DELETE
uri: http://localhost:3000/api/v1/admin/canonical_email_blocks/6
uri: http://localhost:3000/api/v1/admin/canonical_email_blocks/2
response:
body:
string: '{}'
@ -409,10 +409,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=6.89, cache_generate.active_support;dur=0.91,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.31,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=6.55,
render.active_model_serializers;dur=0.04, process_action.action_controller;dur=29.71
- cache_read.active_support;dur=0.02, sql.active_record;dur=9.42, cache_generate.active_support;dur=0.94,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.35,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=8.40,
render.active_model_serializers;dur=0.02, process_action.action_controller;dur=34.22
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -424,11 +424,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-14T20:45:00.906109Z'
- '2025-08-15T17:35:00.547317Z'
X-Request-Id:
- af042cc3-eb62-46eb-a2e9-89bdec7e983f
- 12497444-f061-4dcf-9c85-3554c8add0fc
X-Runtime:
- '0.045033'
- '0.061206'
X-XSS-Protection:
- '0'
vary:
@ -442,7 +442,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -468,10 +468,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.77, cache_generate.active_support;dur=0.83,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.23,
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.88, cache_generate.active_support;dur=1.05,
cache_write.active_support;dur=0.09, instantiation.active_record;dur=0.30,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.04,
process_action.action_controller;dur=20.34
process_action.action_controller;dur=24.83
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -483,11 +483,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-14T20:45:00.954643Z'
- '2025-08-15T17:35:00.612957Z'
X-Request-Id:
- e0e41dfa-f563-4003-9b53-6ba9d4428eb9
- 0e7affea-1bf4-42ce-85a6-9df6a193ffaf
X-Runtime:
- '0.035310'
- '0.045864'
X-XSS-Protection:
- '0'
vary:
@ -501,7 +501,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -516,7 +516,7 @@ interactions:
uri: http://localhost:3000/api/v1/admin/canonical_email_blocks
response:
body:
string: '{"id":"7","canonical_email_hash":"973dfe463ec85785f5f95af5ba3906eedb2d931c24e69824a89ea65dba4e813b"}'
string: '{"id":"3","canonical_email_hash":"973dfe463ec85785f5f95af5ba3906eedb2d931c24e69824a89ea65dba4e813b"}'
headers:
Cache-Control:
- private, no-store
@ -527,14 +527,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"0fb4bdcdc01d6e01043a5e3e75faa43d"
- W/"03a941d0a81e7ac3b7db195d195c7ffa"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=6.62, cache_generate.active_support;dur=0.84,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.29,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=6.69,
render.active_model_serializers;dur=0.16, process_action.action_controller;dur=33.05
- cache_read.active_support;dur=0.02, sql.active_record;dur=9.86, cache_generate.active_support;dur=0.91,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.35,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=9.68,
render.active_model_serializers;dur=0.16, process_action.action_controller;dur=35.33
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -546,11 +546,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-14T20:45:00.997727Z'
- '2025-08-15T17:35:00.667766Z'
X-Request-Id:
- 98777f48-e0e0-4c00-9150-93037940fbd7
- e0b7194b-d00f-4d5a-8f52-fe50000b8524
X-Runtime:
- '0.048131'
- '0.056414'
X-XSS-Protection:
- '0'
vary:
@ -564,7 +564,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -572,10 +572,10 @@ interactions:
User-Agent:
- tests/v311
method: GET
uri: http://localhost:3000/api/v1/admin/canonical_email_blocks/7
uri: http://localhost:3000/api/v1/admin/canonical_email_blocks/3
response:
body:
string: '{"id":"7","canonical_email_hash":"973dfe463ec85785f5f95af5ba3906eedb2d931c24e69824a89ea65dba4e813b"}'
string: '{"id":"3","canonical_email_hash":"973dfe463ec85785f5f95af5ba3906eedb2d931c24e69824a89ea65dba4e813b"}'
headers:
Cache-Control:
- private, no-store
@ -586,14 +586,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"0fb4bdcdc01d6e01043a5e3e75faa43d"
- W/"03a941d0a81e7ac3b7db195d195c7ffa"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.64, cache_generate.active_support;dur=0.75,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.22,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.16,
process_action.action_controller;dur=19.11
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.87, cache_generate.active_support;dur=0.98,
cache_write.active_support;dur=0.09, instantiation.active_record;dur=0.28,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.14,
process_action.action_controller;dur=23.70
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -605,11 +605,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-14T20:45:00.052810Z'
- '2025-08-15T17:35:00.745665Z'
X-Request-Id:
- b6c2284f-6330-4519-b65b-077a4d359dc5
- 76fd0339-b036-43bf-9df4-8508985ebb72
X-Runtime:
- '0.041760'
- '0.057238'
X-XSS-Protection:
- '0'
vary:
@ -623,7 +623,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -638,7 +638,7 @@ interactions:
uri: http://localhost:3000/api/v1/admin/canonical_email_blocks/test
response:
body:
string: '[{"id":"7","canonical_email_hash":"973dfe463ec85785f5f95af5ba3906eedb2d931c24e69824a89ea65dba4e813b"}]'
string: '[{"id":"3","canonical_email_hash":"973dfe463ec85785f5f95af5ba3906eedb2d931c24e69824a89ea65dba4e813b"}]'
headers:
Cache-Control:
- private, no-store
@ -649,14 +649,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"3751cf934fdd87520843cb595486e47e"
- W/"9a90f9d753e5819d7e2c3dbf9f45af08"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.01, sql.active_record;dur=0.84, cache_generate.active_support;dur=0.56,
cache_write.active_support;dur=0.06, instantiation.active_record;dur=0.34,
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.77, cache_generate.active_support;dur=0.89,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.34,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.15,
process_action.action_controller;dur=23.64
process_action.action_controller;dur=23.85
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -668,11 +668,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-14T20:45:00.092385Z'
- '2025-08-15T17:35:00.798659Z'
X-Request-Id:
- 8e5589f5-7b0d-40f4-931c-03be228899ce
- 9848feb0-d276-4f5e-bc08-db4572fdc1c8
X-Runtime:
- '0.037427'
- '0.043780'
X-XSS-Protection:
- '0'
vary:
@ -686,7 +686,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -701,7 +701,7 @@ interactions:
uri: http://localhost:3000/api/v1/admin/canonical_email_blocks/test
response:
body:
string: '[{"id":"7","canonical_email_hash":"973dfe463ec85785f5f95af5ba3906eedb2d931c24e69824a89ea65dba4e813b"}]'
string: '[{"id":"3","canonical_email_hash":"973dfe463ec85785f5f95af5ba3906eedb2d931c24e69824a89ea65dba4e813b"}]'
headers:
Cache-Control:
- private, no-store
@ -712,14 +712,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"3751cf934fdd87520843cb595486e47e"
- W/"9a90f9d753e5819d7e2c3dbf9f45af08"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.89, cache_generate.active_support;dur=0.94,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.35,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.16,
process_action.action_controller;dur=21.59
- cache_read.active_support;dur=0.03, sql.active_record;dur=0.71, cache_generate.active_support;dur=0.86,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.29,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.15,
process_action.action_controller;dur=22.65
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -731,11 +731,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-14T20:45:00.130547Z'
- '2025-08-15T17:35:00.849556Z'
X-Request-Id:
- 2af6df82-8b70-4a91-ad22-fff4c7254851
- ac358f49-2d63-42c5-b246-b5f20a2c1bec
X-Runtime:
- '0.036052'
- '0.041403'
X-XSS-Protection:
- '0'
vary:
@ -749,7 +749,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -764,7 +764,7 @@ interactions:
uri: http://localhost:3000/api/v1/admin/canonical_email_blocks/test
response:
body:
string: '[{"id":"7","canonical_email_hash":"973dfe463ec85785f5f95af5ba3906eedb2d931c24e69824a89ea65dba4e813b"}]'
string: '[{"id":"3","canonical_email_hash":"973dfe463ec85785f5f95af5ba3906eedb2d931c24e69824a89ea65dba4e813b"}]'
headers:
Cache-Control:
- private, no-store
@ -775,14 +775,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"3751cf934fdd87520843cb595486e47e"
- W/"9a90f9d753e5819d7e2c3dbf9f45af08"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.66, cache_generate.active_support;dur=0.76,
cache_write.active_support;dur=0.26, instantiation.active_record;dur=0.27,
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.73, cache_generate.active_support;dur=0.77,
cache_write.active_support;dur=0.06, instantiation.active_record;dur=0.30,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.16,
process_action.action_controller;dur=19.91
process_action.action_controller;dur=23.13
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -794,11 +794,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-14T20:45:00.169167Z'
- '2025-08-15T17:35:00.900454Z'
X-Request-Id:
- a933c874-5f67-44df-8d5b-5adfc6c53734
- 63fe2af7-94ef-435a-9802-969aa8fbff09
X-Runtime:
- '0.033851'
- '0.041894'
X-XSS-Protection:
- '0'
vary:
@ -812,7 +812,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -822,7 +822,7 @@ interactions:
User-Agent:
- tests/v311
method: DELETE
uri: http://localhost:3000/api/v1/admin/canonical_email_blocks/7
uri: http://localhost:3000/api/v1/admin/canonical_email_blocks/3
response:
body:
string: '{}'
@ -840,10 +840,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=6.28, cache_generate.active_support;dur=0.89,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.33,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=5.69,
render.active_model_serializers;dur=0.02, process_action.action_controller;dur=26.96
- cache_read.active_support;dur=0.02, sql.active_record;dur=9.28, cache_generate.active_support;dur=0.89,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.32,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=8.66,
render.active_model_serializers;dur=0.02, process_action.action_controller;dur=33.29
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -855,11 +855,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-14T20:45:00.207418Z'
- '2025-08-15T17:35:00.946989Z'
X-Request-Id:
- d17f441a-ce84-4160-a152-bedf0d371bf4
- d2d86615-5d1b-4ab2-b725-28d01a77780d
X-Runtime:
- '0.041095'
- '0.052465'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -20,7 +20,7 @@ interactions:
uri: http://localhost:3000/api/v1/admin/domain_blocks/
response:
body:
string: '{"id":"1","domain":"chitter.xyz","digest":"06f1118b8a3b4cb0b92683b284f4c0c4a03e43b151247acda54c054fcb0d5174","created_at":"2025-02-13T21:55:13.230Z","severity":"suspend","reject_media":false,"reject_reports":false,"private_comment":null,"public_comment":"sicko
string: '{"id":"1","domain":"chitter.xyz","digest":"06f1118b8a3b4cb0b92683b284f4c0c4a03e43b151247acda54c054fcb0d5174","created_at":"2025-08-15T17:32:13.735Z","severity":"suspend","reject_media":false,"reject_reports":false,"private_comment":null,"public_comment":"sicko
behaviour","obfuscate":false}'
headers:
Cache-Control:
@ -32,14 +32,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"139387bc1f52966c7fb0b53dc29704c5"
- W/"b5afa5890ce37b0ece5a7b0eacb85636"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.03, sql.active_record;dur=20.59, cache_generate.active_support;dur=1.20,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.52,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=8.33,
render.active_model_serializers;dur=0.22, process_action.action_controller;dur=72.71
- cache_read.active_support;dur=0.02, sql.active_record;dur=23.30, cache_generate.active_support;dur=0.93,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.44,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=10.04,
render.active_model_serializers;dur=0.23, process_action.action_controller;dur=88.38
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -51,11 +51,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.212350Z'
- '2025-08-15T17:35:00.718649Z'
X-Request-Id:
- f62c694d-3578-4e46-96bc-a99e00505563
- 13a5b278-a069-416f-be41-e130ea09dfb0
X-Runtime:
- '0.092768'
- '0.116243'
X-XSS-Protection:
- '0'
vary:
@ -69,7 +69,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -80,7 +80,7 @@ interactions:
uri: http://localhost:3000/api/v1/admin/domain_blocks/
response:
body:
string: '[{"id":"1","domain":"chitter.xyz","digest":"06f1118b8a3b4cb0b92683b284f4c0c4a03e43b151247acda54c054fcb0d5174","created_at":"2025-02-13T21:55:13.230Z","severity":"suspend","reject_media":false,"reject_reports":false,"private_comment":null,"public_comment":"sicko
string: '[{"id":"1","domain":"chitter.xyz","digest":"06f1118b8a3b4cb0b92683b284f4c0c4a03e43b151247acda54c054fcb0d5174","created_at":"2025-08-15T17:32:13.735Z","severity":"suspend","reject_media":false,"reject_reports":false,"private_comment":null,"public_comment":"sicko
behaviour","obfuscate":false}]'
headers:
Cache-Control:
@ -92,16 +92,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"c51606c093e2cf391e0b8690ffa59c3c"
- W/"6903738f9bdcc7c1686e4e842f9e829b"
Link:
- <http://localhost:3000/api/v1/admin/domain_blocks?min_id=1>; rel="prev"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=1.19, cache_generate.active_support;dur=0.97,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.33,
- cache_read.active_support;dur=0.02, sql.active_record;dur=2.74, cache_generate.active_support;dur=1.02,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=5.43,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.24,
process_action.action_controller;dur=21.87
process_action.action_controller;dur=40.97
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -113,11 +113,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.305413Z'
- '2025-08-15T17:35:00.840341Z'
X-Request-Id:
- bdb0073d-32ef-45f4-832c-fa07241fd004
- 75f48eb8-1aef-49ca-a90c-902df33dbc7e
X-Runtime:
- '0.036845'
- '0.063051'
X-XSS-Protection:
- '0'
vary:
@ -131,7 +131,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -142,7 +142,7 @@ interactions:
uri: http://localhost:3000/api/v1/admin/domain_blocks/1
response:
body:
string: '{"id":"1","domain":"chitter.xyz","digest":"06f1118b8a3b4cb0b92683b284f4c0c4a03e43b151247acda54c054fcb0d5174","created_at":"2025-02-13T21:55:13.230Z","severity":"suspend","reject_media":false,"reject_reports":false,"private_comment":null,"public_comment":"sicko
string: '{"id":"1","domain":"chitter.xyz","digest":"06f1118b8a3b4cb0b92683b284f4c0c4a03e43b151247acda54c054fcb0d5174","created_at":"2025-08-15T17:32:13.735Z","severity":"suspend","reject_media":false,"reject_reports":false,"private_comment":null,"public_comment":"sicko
behaviour","obfuscate":false}'
headers:
Cache-Control:
@ -154,14 +154,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"139387bc1f52966c7fb0b53dc29704c5"
- W/"b5afa5890ce37b0ece5a7b0eacb85636"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.82, cache_generate.active_support;dur=0.85,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.33,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.25,
process_action.action_controller;dur=20.96
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.96, cache_generate.active_support;dur=1.04,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.38,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.24,
process_action.action_controller;dur=25.51
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -173,11 +173,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.346810Z'
- '2025-08-15T17:35:00.907866Z'
X-Request-Id:
- 56228ef2-dc92-4980-9761-3d2dc23a4e1b
- c4710eff-fa3e-4b49-9b7e-a559be44210a
X-Runtime:
- '0.035702'
- '0.046106'
X-XSS-Protection:
- '0'
vary:
@ -191,7 +191,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -206,7 +206,7 @@ interactions:
uri: http://localhost:3000/api/v1/admin/domain_blocks/1
response:
body:
string: '{"id":"1","domain":"chitter.xyz","digest":"06f1118b8a3b4cb0b92683b284f4c0c4a03e43b151247acda54c054fcb0d5174","created_at":"2025-02-13T21:55:13.230Z","severity":"silence","reject_media":false,"reject_reports":false,"private_comment":"jk
string: '{"id":"1","domain":"chitter.xyz","digest":"06f1118b8a3b4cb0b92683b284f4c0c4a03e43b151247acda54c054fcb0d5174","created_at":"2025-08-15T17:32:13.735Z","severity":"silence","reject_media":false,"reject_reports":false,"private_comment":"jk
ilu \u003c3","public_comment":"sicko behaviour","obfuscate":false}'
headers:
Cache-Control:
@ -218,15 +218,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"fad245c07798e400ce9d4dc6e713f5ed"
- W/"465435cc15036561e544c307c59169aa"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=16.11, cache_generate.active_support;dur=1.11,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.36,
- cache_read.active_support;dur=0.02, sql.active_record;dur=9.86, cache_generate.active_support;dur=0.86,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.42,
start_processing.action_controller;dur=0.00, unpermitted_parameters.action_controller;dur=0.00,
transaction.active_record;dur=16.19, render.active_model_serializers;dur=0.28,
process_action.action_controller;dur=39.84
transaction.active_record;dur=9.71, render.active_model_serializers;dur=0.30,
process_action.action_controller;dur=36.34
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -238,11 +238,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.388860Z'
- '2025-08-15T17:35:00.963385Z'
X-Request-Id:
- 6c57eb7d-91a8-4ab7-a4f7-331c165ebcb8
- 90c341eb-fabc-4afe-ab74-0628afe0e39c
X-Runtime:
- '0.055515'
- '0.056591'
X-XSS-Protection:
- '0'
vary:
@ -256,7 +256,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -284,10 +284,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=14.30, cache_generate.active_support;dur=1.02,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.51,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=13.10,
render.active_model_serializers;dur=0.03, process_action.action_controller;dur=41.16
- cache_read.active_support;dur=0.02, sql.active_record;dur=9.69, cache_generate.active_support;dur=0.99,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.42,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=7.97,
render.active_model_serializers;dur=0.02, process_action.action_controller;dur=36.60
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -299,11 +299,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.449054Z'
- '2025-08-15T17:35:00.041076Z'
X-Request-Id:
- 23989abf-c1d6-447b-b8e4-a96d0acae9ed
- 4c7a157d-283e-4529-99dc-8284601f30f7
X-Runtime:
- '0.056359'
- '0.057109'
X-XSS-Protection:
- '0'
vary:
@ -317,7 +317,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -343,10 +343,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.85, cache_generate.active_support;dur=0.96,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.26,
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.76, cache_generate.active_support;dur=0.90,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.28,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.04,
process_action.action_controller;dur=20.16
process_action.action_controller;dur=22.84
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -358,11 +358,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.508276Z'
- '2025-08-15T17:35:00.105462Z'
X-Request-Id:
- 37688d51-10b0-40ed-951a-235d33073860
- 7339d6f5-dde3-4ab4-b1ad-bb81a664d864
X-Runtime:
- '0.034654'
- '0.042280'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -20,7 +20,7 @@ interactions:
uri: http://localhost:3000/api/v1/admin/email_domain_blocks
response:
body:
string: '{"id":"1","domain":"blockedexample.com","created_at":"2025-02-15T14:54:05.852Z","history":[{"day":"1739577600","accounts":"0","uses":"0"},{"day":"1739491200","accounts":"0","uses":"0"},{"day":"1739404800","accounts":"0","uses":"0"},{"day":"1739318400","accounts":"0","uses":"0"},{"day":"1739232000","accounts":"0","uses":"0"},{"day":"1739145600","accounts":"0","uses":"0"},{"day":"1739059200","accounts":"0","uses":"0"}],"allow_with_approval":false}'
string: '{"id":"1","domain":"blockedexample.com","created_at":"2025-08-15T17:32:16.060Z","history":[{"day":"1755216000","accounts":"0","uses":"0"},{"day":"1755129600","accounts":"0","uses":"0"},{"day":"1755043200","accounts":"0","uses":"0"},{"day":"1754956800","accounts":"0","uses":"0"},{"day":"1754870400","accounts":"0","uses":"0"},{"day":"1754784000","accounts":"0","uses":"0"},{"day":"1754697600","accounts":"0","uses":"0"}],"allow_with_approval":false}'
headers:
Cache-Control:
- private, no-store
@ -31,14 +31,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"1808d2ab259a9df5de95d5c1b66b923a"
- W/"9d7cb4522e36f59c7929bfa66bc7b8f7"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=25.96, cache_generate.active_support;dur=14.16,
cache_write.active_support;dur=0.14, instantiation.active_record;dur=0.57,
start_processing.action_controller;dur=0.01, transaction.active_record;dur=9.82,
render.active_model_serializers;dur=1.58, process_action.action_controller;dur=74.00
- cache_read.active_support;dur=0.02, sql.active_record;dur=10.62, cache_generate.active_support;dur=1.03,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.32,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=9.07,
render.active_model_serializers;dur=1.38, process_action.action_controller;dur=43.39
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -50,11 +50,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-15T14:55:00.814734Z'
- '2025-08-15T17:35:00.049032Z'
X-Request-Id:
- 6a80dd2b-8ac4-484f-855d-0a452534c813
- e4b34805-3ce8-4259-b1f6-b6a4bd12b68a
X-Runtime:
- '0.147481'
- '0.066050'
X-XSS-Protection:
- '0'
vary:
@ -68,7 +68,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -79,7 +79,7 @@ interactions:
uri: http://localhost:3000/api/v1/admin/email_domain_blocks/1
response:
body:
string: '{"id":"1","domain":"blockedexample.com","created_at":"2025-02-15T14:54:05.852Z","history":[{"day":"1739577600","accounts":"0","uses":"0"},{"day":"1739491200","accounts":"0","uses":"0"},{"day":"1739404800","accounts":"0","uses":"0"},{"day":"1739318400","accounts":"0","uses":"0"},{"day":"1739232000","accounts":"0","uses":"0"},{"day":"1739145600","accounts":"0","uses":"0"},{"day":"1739059200","accounts":"0","uses":"0"}],"allow_with_approval":false}'
string: '{"id":"1","domain":"blockedexample.com","created_at":"2025-08-15T17:32:16.060Z","history":[{"day":"1755216000","accounts":"0","uses":"0"},{"day":"1755129600","accounts":"0","uses":"0"},{"day":"1755043200","accounts":"0","uses":"0"},{"day":"1754956800","accounts":"0","uses":"0"},{"day":"1754870400","accounts":"0","uses":"0"},{"day":"1754784000","accounts":"0","uses":"0"},{"day":"1754697600","accounts":"0","uses":"0"}],"allow_with_approval":false}'
headers:
Cache-Control:
- private, no-store
@ -90,14 +90,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"1808d2ab259a9df5de95d5c1b66b923a"
- W/"9d7cb4522e36f59c7929bfa66bc7b8f7"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.98, cache_generate.active_support;dur=1.00,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.29,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=1.45,
process_action.action_controller;dur=21.91
- cache_read.active_support;dur=0.02, sql.active_record;dur=2.59, cache_generate.active_support;dur=0.87,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=2.63,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=1.25,
process_action.action_controller;dur=31.21
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -109,11 +109,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-15T14:55:00.904524Z'
- '2025-08-15T17:35:00.120606Z'
X-Request-Id:
- fa306560-9b65-48a2-82a0-d0a35aa847ab
- 4bbcf142-9269-488e-a789-770450686ea1
X-Runtime:
- '0.037382'
- '0.053006'
X-XSS-Protection:
- '0'
vary:
@ -127,7 +127,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -138,7 +138,7 @@ interactions:
uri: http://localhost:3000/api/v1/admin/email_domain_blocks
response:
body:
string: '[{"id":"1","domain":"blockedexample.com","created_at":"2025-02-15T14:54:05.852Z","history":[{"day":"1739577600","accounts":"0","uses":"0"},{"day":"1739491200","accounts":"0","uses":"0"},{"day":"1739404800","accounts":"0","uses":"0"},{"day":"1739318400","accounts":"0","uses":"0"},{"day":"1739232000","accounts":"0","uses":"0"},{"day":"1739145600","accounts":"0","uses":"0"},{"day":"1739059200","accounts":"0","uses":"0"}],"allow_with_approval":false}]'
string: '[{"id":"1","domain":"blockedexample.com","created_at":"2025-08-15T17:32:16.060Z","history":[{"day":"1755216000","accounts":"0","uses":"0"},{"day":"1755129600","accounts":"0","uses":"0"},{"day":"1755043200","accounts":"0","uses":"0"},{"day":"1754956800","accounts":"0","uses":"0"},{"day":"1754870400","accounts":"0","uses":"0"},{"day":"1754784000","accounts":"0","uses":"0"},{"day":"1754697600","accounts":"0","uses":"0"}],"allow_with_approval":false}]'
headers:
Cache-Control:
- private, no-store
@ -149,16 +149,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"9b0a3ccd05281d166d2b8e8e5eed8b2c"
- W/"d41e74a5072079eb3fdbca15cbef3d3c"
Link:
- <http://localhost:3000/api/v1/admin/email_domain_blocks?min_id=1>; rel="prev"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.95, cache_generate.active_support;dur=0.77,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.25,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=1.13,
process_action.action_controller;dur=21.94
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.70, cache_generate.active_support;dur=0.92,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.27,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=1.30,
process_action.action_controller;dur=24.41
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -170,11 +170,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-15T14:55:00.946215Z'
- '2025-08-15T17:35:00.182388Z'
X-Request-Id:
- 9d9d1aa5-8bfe-4729-a0d3-1921e48ec677
- 8b040e40-6ca7-4b7c-9b73-8ca14af2e1fd
X-Runtime:
- '0.036179'
- '0.044013'
X-XSS-Protection:
- '0'
vary:
@ -188,7 +188,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -216,10 +216,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=6.56, cache_generate.active_support;dur=0.93,
cache_write.active_support;dur=0.26, instantiation.active_record;dur=0.35,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=6.76,
render.active_model_serializers;dur=0.05, process_action.action_controller;dur=32.27
- cache_read.active_support;dur=0.02, sql.active_record;dur=10.70, cache_generate.active_support;dur=0.99,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.47,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=10.87,
render.active_model_serializers;dur=0.02, process_action.action_controller;dur=38.58
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -231,11 +231,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-15T14:55:00.988934Z'
- '2025-08-15T17:35:00.237303Z'
X-Request-Id:
- 6e80b620-9464-4c22-a0d1-dd5e7ff6a1d4
- 3b79d781-4898-4c7d-b5ba-c69cc9a2abe1
X-Runtime:
- '0.047064'
- '0.058566'
X-XSS-Protection:
- '0'
vary:
@ -249,7 +249,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -275,10 +275,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=1.14, cache_generate.active_support;dur=1.04,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.24,
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.89, cache_generate.active_support;dur=1.00,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.26,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.04,
process_action.action_controller;dur=20.25
process_action.action_controller;dur=23.09
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -290,11 +290,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-15T14:55:00.039450Z'
- '2025-08-15T17:35:00.304633Z'
X-Request-Id:
- a4d9dbce-c753-40e3-b738-92b3dd2a8269
- 0a768f0b-3145-4043-8fef-4aa6e3fea72f
X-Runtime:
- '0.035120'
- '0.043030'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -20,8 +20,8 @@ interactions:
uri: http://localhost:3000/api/v1/admin/ip_blocks
response:
body:
string: '{"id":"2","ip":"8.8.8.0/24","severity":"no_access","comment":"Google
DNS is ULTRA BANNED","created_at":"2025-02-15T16:17:32.614Z","expires_at":null}'
string: '{"id":"1","ip":"8.8.8.0/24","severity":"no_access","comment":"Google
DNS is ULTRA BANNED","created_at":"2025-08-15T17:32:16.382Z","expires_at":null}'
headers:
Cache-Control:
- private, no-store
@ -32,15 +32,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"219f9620b46718276f758078ea95b372"
- W/"3f7f287ae36b879ce8a2742469069fcc"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=7.50, cache_generate.active_support;dur=4.69,
cache_write.active_support;dur=0.11, instantiation.active_record;dur=0.49,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=7.31,
cache_delete.active_support;dur=0.02, render.active_model_serializers;dur=0.24,
process_action.action_controller;dur=33.49
- cache_read.active_support;dur=0.02, sql.active_record;dur=10.19, cache_generate.active_support;dur=1.01,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.36,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=9.04,
cache_delete.active_support;dur=0.02, render.active_model_serializers;dur=0.20,
process_action.action_controller;dur=40.35
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -52,11 +52,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-15T16:20:00.606713Z'
- '2025-08-15T17:35:00.372765Z'
X-Request-Id:
- 374a68b3-a923-49df-8296-f6e2640c3724
- 7949a258-63a9-49eb-9341-09050669ed33
X-Runtime:
- '0.057636'
- '0.063149'
X-XSS-Protection:
- '0'
vary:
@ -70,7 +70,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -78,11 +78,11 @@ interactions:
User-Agent:
- tests/v311
method: GET
uri: http://localhost:3000/api/v1/admin/ip_blocks/2
uri: http://localhost:3000/api/v1/admin/ip_blocks/1
response:
body:
string: '{"id":"2","ip":"8.8.8.0/24","severity":"no_access","comment":"Google
DNS is ULTRA BANNED","created_at":"2025-02-15T16:17:32.614Z","expires_at":null}'
string: '{"id":"1","ip":"8.8.8.0/24","severity":"no_access","comment":"Google
DNS is ULTRA BANNED","created_at":"2025-08-15T17:32:16.382Z","expires_at":null}'
headers:
Cache-Control:
- private, no-store
@ -93,14 +93,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"219f9620b46718276f758078ea95b372"
- W/"3f7f287ae36b879ce8a2742469069fcc"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.67, cache_generate.active_support;dur=0.76,
cache_write.active_support;dur=0.09, instantiation.active_record;dur=0.25,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.22,
process_action.action_controller;dur=20.43
- cache_read.active_support;dur=0.02, sql.active_record;dur=2.09, cache_generate.active_support;dur=0.98,
cache_write.active_support;dur=0.12, instantiation.active_record;dur=3.40,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.25,
process_action.action_controller;dur=29.03
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -112,11 +112,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-15T16:20:00.661597Z'
- '2025-08-15T17:35:00.451949Z'
X-Request-Id:
- 96b094a8-d854-4090-a8ad-20639c24762c
- 562469e8-c4b9-4981-b2e3-c79a32b0f247
X-Runtime:
- '0.036990'
- '0.062983'
X-XSS-Protection:
- '0'
vary:
@ -130,7 +130,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -141,8 +141,8 @@ interactions:
uri: http://localhost:3000/api/v1/admin/ip_blocks
response:
body:
string: '[{"id":"2","ip":"8.8.8.0/24","severity":"no_access","comment":"Google
DNS is ULTRA BANNED","created_at":"2025-02-15T16:17:32.614Z","expires_at":null}]'
string: '[{"id":"1","ip":"8.8.8.0/24","severity":"no_access","comment":"Google
DNS is ULTRA BANNED","created_at":"2025-08-15T17:32:16.382Z","expires_at":null}]'
headers:
Cache-Control:
- private, no-store
@ -153,16 +153,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"dafb1cb8debb9e4d1a34cea73ce6982e"
- W/"5dbbffb38ac1f629ca5a5544fe02753d"
Link:
- <http://localhost:3000/api/v1/admin/ip_blocks?min_id=2>; rel="prev"
- <http://localhost:3000/api/v1/admin/ip_blocks?min_id=1>; rel="prev"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.74, cache_generate.active_support;dur=1.09,
cache_write.active_support;dur=0.09, instantiation.active_record;dur=0.23,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.22,
process_action.action_controller;dur=20.96
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.92, cache_generate.active_support;dur=1.01,
cache_write.active_support;dur=0.09, instantiation.active_record;dur=0.34,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.25,
process_action.action_controller;dur=24.75
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -174,11 +174,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-15T16:20:00.703742Z'
- '2025-08-15T17:35:00.510810Z'
X-Request-Id:
- 9b10949b-a35d-4c26-afbe-29027e25c697
- cf7304b1-982d-483d-a5fe-97f3d79ef515
X-Runtime:
- '0.038134'
- '0.044399'
X-XSS-Protection:
- '0'
vary:
@ -187,12 +187,12 @@ interactions:
code: 200
message: OK
- request:
body: id=2&comment=Updated+test+block
body: id=1&comment=Updated+test+block
headers:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -204,11 +204,11 @@ interactions:
User-Agent:
- tests/v311
method: PUT
uri: http://localhost:3000/api/v1/admin/ip_blocks/2
uri: http://localhost:3000/api/v1/admin/ip_blocks/1
response:
body:
string: '{"id":"2","ip":"8.8.8.0/24","severity":"no_access","comment":"Updated
test block","created_at":"2025-02-15T16:17:32.614Z","expires_at":null}'
string: '{"id":"1","ip":"8.8.8.0/24","severity":"no_access","comment":"Updated
test block","created_at":"2025-08-15T17:32:16.382Z","expires_at":null}'
headers:
Cache-Control:
- private, no-store
@ -219,15 +219,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"84b443beeb1ce564b88b4c659e36afa7"
- W/"6b6f9fb28c03212a14539df314c75ed4"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=9.89, cache_generate.active_support;dur=1.01,
cache_write.active_support;dur=0.17, instantiation.active_record;dur=0.40,
- cache_read.active_support;dur=0.02, sql.active_record;dur=10.16, cache_generate.active_support;dur=0.97,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.32,
start_processing.action_controller;dur=0.00, unpermitted_parameters.action_controller;dur=0.00,
transaction.active_record;dur=10.14, cache_delete.active_support;dur=0.02,
render.active_model_serializers;dur=0.20, process_action.action_controller;dur=43.27
transaction.active_record;dur=9.68, cache_delete.active_support;dur=0.01,
render.active_model_serializers;dur=0.19, process_action.action_controller;dur=34.61
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -239,11 +239,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-15T16:20:00.755487Z'
- '2025-08-15T17:35:00.564091Z'
X-Request-Id:
- 1f631601-7143-4f95-b8f8-bebe0f148dfb
- 9e21062f-3ac1-4270-ba54-811fe3f79de0
X-Runtime:
- '0.060749'
- '0.054167'
X-XSS-Protection:
- '0'
vary:
@ -257,7 +257,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -267,7 +267,7 @@ interactions:
User-Agent:
- tests/v311
method: DELETE
uri: http://localhost:3000/api/v1/admin/ip_blocks/2
uri: http://localhost:3000/api/v1/admin/ip_blocks/1
response:
body:
string: '{}'
@ -285,11 +285,11 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=6.41, cache_generate.active_support;dur=0.93,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.36,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=6.06,
cache_delete.active_support;dur=0.02, render.active_model_serializers;dur=0.02,
process_action.action_controller;dur=29.19
- cache_read.active_support;dur=0.02, sql.active_record;dur=8.99, cache_generate.active_support;dur=0.83,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.32,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=8.23,
cache_delete.active_support;dur=0.01, render.active_model_serializers;dur=0.02,
process_action.action_controller;dur=33.26
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -301,11 +301,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-15T16:20:00.810162Z'
- '2025-08-15T17:35:00.627910Z'
X-Request-Id:
- da1e5424-7b33-4723-9572-bcbd9e9544b3
- 9f62c0df-b9bd-4910-bc64-10bdb93f6559
X-Runtime:
- '0.043990'
- '0.052201'
X-XSS-Protection:
- '0'
vary:
@ -319,7 +319,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -345,10 +345,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=8.21, cache_generate.active_support;dur=0.65,
cache_write.active_support;dur=0.06, instantiation.active_record;dur=0.34,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.04,
process_action.action_controller;dur=35.29
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.69, cache_generate.active_support;dur=0.91,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.24,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.03,
process_action.action_controller;dur=22.40
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -360,11 +360,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-15T16:20:00.857147Z'
- '2025-08-15T17:35:00.682910Z'
X-Request-Id:
- ff2a6b5b-6597-4376-994d-aa3193b579e1
- 8fe99837-4173-4f47-8641-ece9620b747e
X-Runtime:
- '0.049639'
- '0.041363'
X-XSS-Protection:
- '0'
vary:
@ -378,7 +378,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -404,10 +404,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.76, cache_generate.active_support;dur=0.86,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.23,
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.77, cache_generate.active_support;dur=0.90,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.25,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.04,
process_action.action_controller;dur=20.13
process_action.action_controller;dur=22.91
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -419,11 +419,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-15T16:20:00.915691Z'
- '2025-08-15T17:35:00.733346Z'
X-Request-Id:
- ff5baf3e-bf99-4b36-a877-72986e6820e8
- 10225819-2e76-4e07-b17a-9c1f9652edd2
X-Runtime:
- '0.039306'
- '0.041821'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_3
Connection:
@ -20,9 +20,9 @@ interactions:
uri: http://localhost:3000/api/v1/statuses
response:
body:
string: '{"id":"113998804510619533","created_at":"2025-02-13T21:55:11.405Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test_2/statuses/113998804510619533","url":"http://localhost:3000/@mastodonpy_test_2/113998804510619533","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eToot,
string: '{"id":"115033973165984124","created_at":"2025-08-15T17:32:11.561Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test_2/statuses/115033973165984124","url":"http://localhost:3000/@mastodonpy_test_2/115033973165984124","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eToot,
finally!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801391516277","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":2,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
test suite","website":null},"account":{"id":"115033965921234147","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
@ -33,14 +33,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"129d67187aefe76bbc181f42f8868098"
- W/"f8f17e367ae81231df5a348a6bb2cc93"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.07, sql.active_record;dur=24.45, cache_generate.active_support;dur=3.37,
cache_write.active_support;dur=2.57, instantiation.active_record;dur=0.56,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=4.58,
render.active_model_serializers;dur=11.79, process_action.action_controller;dur=54.39
- cache_read.active_support;dur=0.05, sql.active_record;dur=14.66, cache_generate.active_support;dur=2.95,
cache_write.active_support;dur=0.15, instantiation.active_record;dur=0.57,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=5.89,
render.active_model_serializers;dur=11.05, process_action.action_controller;dur=56.38
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -52,11 +52,11 @@ interactions:
X-RateLimit-Remaining:
- '296'
X-RateLimit-Reset:
- '2025-02-14T00:00:00.432656Z'
- '2025-08-15T18:00:00.590176Z'
X-Request-Id:
- 66a22648-163a-40a1-8c45-43a2df642c2d
- 2a167364-edbd-49bc-808d-feb25621bcd0
X-Runtime:
- '0.086216'
- '0.076883'
X-XSS-Protection:
- '0'
vary:
@ -70,7 +70,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_3
Connection:
@ -81,7 +81,7 @@ interactions:
uri: http://localhost:3000/api/v1/accounts/verify_credentials
response:
body:
string: '{"id":"113998801391516277","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":2,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"source":{"privacy":"public","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":true,"indexable":true},"emojis":[],"roles":[],"fields":[],"role":{"id":"-99","name":"","permissions":"65536","color":"","highlighted":false}}'
string: '{"id":"115033965921234147","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"source":{"privacy":"public","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":true,"indexable":true},"emojis":[],"roles":[],"fields":[],"role":{"id":"-99","name":"","permissions":"65536","color":"","highlighted":false}}'
headers:
Cache-Control:
- private, no-store
@ -92,14 +92,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"ce5dc4715cdcee2f753d79a284cc2b6f"
- W/"d27ae2ad3fa9dc34f22dbc28f2d423db"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=1.22, cache_generate.active_support;dur=1.80,
cache_write.active_support;dur=0.11, instantiation.active_record;dur=0.32,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.01,
process_action.action_controller;dur=22.89
- cache_read.active_support;dur=0.04, sql.active_record;dur=1.11, cache_generate.active_support;dur=1.69,
cache_write.active_support;dur=0.12, instantiation.active_record;dur=0.43,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.79,
process_action.action_controller;dur=26.59
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -111,11 +111,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.495789Z'
- '2025-08-15T17:35:00.664728Z'
X-Request-Id:
- 884f3abb-31ce-47dd-ab60-933a7e163bb2
- 9f53dab9-ca70-4375-b03c-b71f919d2269
X-Runtime:
- '0.039207'
- '0.046948'
X-XSS-Protection:
- '0'
vary:
@ -129,7 +129,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -140,7 +140,7 @@ interactions:
uri: http://localhost:3000/api/v1/accounts/verify_credentials
response:
body:
string: '{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"source":{"privacy":"public","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[],"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}'
string: '{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"source":{"privacy":"public","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[],"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}'
headers:
Cache-Control:
- private, no-store
@ -151,14 +151,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"be8cf6e4ab6e27b1683738931eefd7a8"
- W/"901229a4c5a66235f03efff55b92086a"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=1.30, cache_generate.active_support;dur=1.73,
cache_write.active_support;dur=0.12, instantiation.active_record;dur=0.37,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.71,
process_action.action_controller;dur=25.95
- cache_read.active_support;dur=0.04, sql.active_record;dur=1.30, cache_generate.active_support;dur=2.00,
cache_write.active_support;dur=0.12, instantiation.active_record;dur=0.42,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.82,
process_action.action_controller;dur=26.82
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -170,11 +170,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.554831Z'
- '2025-08-15T17:35:00.739222Z'
X-Request-Id:
- be79fba3-0d34-4c98-9c44-6ac76950c1cc
- 79c80203-fedd-4309-a20d-40260c32028a
X-Runtime:
- '0.041428'
- '0.047695'
X-XSS-Protection:
- '0'
vary:
@ -183,12 +183,12 @@ interactions:
code: 200
message: OK
- request:
body: account_id=113998801391516277&comment=api+crimes&status_ids%5B%5D=113998804510619533
body: account_id=115033965921234147&comment=api+crimes&status_ids%5B%5D=115033973165984124
headers:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -204,7 +204,7 @@ interactions:
response:
body:
string: '{"id":"1","action_taken":false,"action_taken_at":null,"category":"other","comment":"api
crimes","forwarded":false,"created_at":"2025-02-13T21:55:11.646Z","status_ids":["113998804510619533"],"rule_ids":null,"target_account":{"id":"113998801391516277","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":2,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]}}'
crimes","forwarded":false,"created_at":"2025-08-15T17:32:11.832Z","status_ids":["115033973165984124"],"rule_ids":null,"target_account":{"id":"115033965921234147","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]}}'
headers:
Cache-Control:
- private, no-store
@ -215,14 +215,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"4a03abee33e84071411aa5a8c413ebc4"
- W/"b0950390226990d3be0922a3f826ce6f"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.07, sql.active_record;dur=9.31, cache_generate.active_support;dur=4.82,
cache_write.active_support;dur=0.18, instantiation.active_record;dur=1.11,
start_processing.action_controller;dur=0.01, transaction.active_record;dur=3.44,
enqueue.active_job;dur=0.75, render.active_model_serializers;dur=5.32, process_action.action_controller;dur=74.98
- cache_read.active_support;dur=0.07, sql.active_record;dur=7.87, cache_generate.active_support;dur=11.66,
cache_write.active_support;dur=0.17, instantiation.active_record;dur=1.06,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=4.70,
enqueue.active_job;dur=0.78, render.active_model_serializers;dur=12.41, process_action.action_controller;dur=66.03
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -234,11 +234,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.618309Z'
- '2025-08-15T17:35:00.815266Z'
X-Request-Id:
- 39dd0a51-83a3-4689-8bd2-b605e24a0866
- 5eb66e2e-8fa6-4aeb-8845-9143ee4a2651
X-Runtime:
- '0.094804'
- '0.088454'
X-XSS-Protection:
- '0'
vary:
@ -252,7 +252,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -264,9 +264,9 @@ interactions:
response:
body:
string: '[{"id":"1","action_taken":false,"action_taken_at":null,"category":"other","comment":"api
crimes","forwarded":false,"created_at":"2025-02-13T21:55:11.646Z","updated_at":"2025-02-13T21:55:11.646Z","account":{"id":"113998800956287197","username":"admin","domain":null,"created_at":"2025-02-13T21:54:17.053Z","email":"admin@localhost","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":null,"invite_request":null,"ips":[],"account":{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}},"target_account":{"id":"113998801391516277","username":"mastodonpy_test_2","domain":null,"created_at":"2025-02-13T21:54:23.829Z","email":"mastodonpy_test_2@localhost","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":"ja","invite_request":null,"ips":[],"account":{"id":"113998801391516277","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":2,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"role":{"id":"-99","name":"","permissions":"65536","color":"","highlighted":false}},"assigned_account":null,"action_taken_by_account":null,"statuses":[{"id":"113998804510619533","created_at":"2025-02-13T21:55:11.405Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test_2/statuses/113998804510619533","url":"http://localhost:3000/@mastodonpy_test_2/113998804510619533","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003eToot,
crimes","forwarded":false,"created_at":"2025-08-15T17:32:11.832Z","updated_at":"2025-08-15T17:32:11.832Z","account":{"id":"115033965466813222","username":"admin","domain":null,"created_at":"2025-08-15T17:30:13.983Z","email":"admin@localhost","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":null,"invite_request":null,"ips":[],"account":{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}},"target_account":{"id":"115033965921234147","username":"mastodonpy_test_2","domain":null,"created_at":"2025-08-15T17:30:21.033Z","email":"mastodonpy_test_2@localhost","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":"ja","invite_request":null,"ips":[],"account":{"id":"115033965921234147","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"role":{"id":"-99","name":"","permissions":"65536","color":"","highlighted":false}},"assigned_account":null,"action_taken_by_account":null,"statuses":[{"id":"115033973165984124","created_at":"2025-08-15T17:32:11.561Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test_2/statuses/115033973165984124","url":"http://localhost:3000/@mastodonpy_test_2/115033973165984124","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003eToot,
finally!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801391516277","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":2,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}],"rules":[]}]'
test suite","website":null},"account":{"id":"115033965921234147","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}],"rules":[]}]'
headers:
Cache-Control:
- private, no-store
@ -277,16 +277,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"3f45c16dd5eb367f9773a6513e5a143a"
- W/"7607c8ef39eb8ab50c2e06dcdbd468b3"
Link:
- <http://localhost:3000/api/v1/admin/reports?min_id=1>; rel="prev"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.18, sql.active_record;dur=6.78, cache_generate.active_support;dur=3.47,
cache_write.active_support;dur=0.14, instantiation.active_record;dur=1.43,
start_processing.action_controller;dur=0.01, cache_fetch_hit.active_support;dur=0.01,
render.active_model_serializers;dur=58.90, process_action.action_controller;dur=86.89
- cache_read.active_support;dur=0.16, sql.active_record;dur=5.17, cache_generate.active_support;dur=2.93,
cache_write.active_support;dur=0.14, instantiation.active_record;dur=5.79,
start_processing.action_controller;dur=0.00, cache_fetch_hit.active_support;dur=0.01,
render.active_model_serializers;dur=37.01, process_action.action_controller;dur=77.02
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -298,11 +298,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.729151Z'
- '2025-08-15T17:35:00.927535Z'
X-Request-Id:
- 8273b268-d352-41ab-b13b-f0719f819f31
- 9b2bf7fb-6610-4f67-9e3a-67bbe55c922b
X-Runtime:
- '0.105258'
- '0.101670'
X-XSS-Protection:
- '0'
vary:
@ -316,7 +316,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -329,10 +329,10 @@ interactions:
uri: http://localhost:3000/api/v1/admin/reports/1/resolve
response:
body:
string: '{"id":"1","action_taken":true,"action_taken_at":"2025-02-13T21:55:11.902Z","category":"other","comment":"api
crimes","forwarded":false,"created_at":"2025-02-13T21:55:11.646Z","updated_at":"2025-02-13T21:55:11.903Z","account":{"id":"113998800956287197","username":"admin","domain":null,"created_at":"2025-02-13T21:54:17.053Z","email":"admin@localhost","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":null,"invite_request":null,"ips":[],"account":{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}},"target_account":{"id":"113998801391516277","username":"mastodonpy_test_2","domain":null,"created_at":"2025-02-13T21:54:23.829Z","email":"mastodonpy_test_2@localhost","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":"ja","invite_request":null,"ips":[],"account":{"id":"113998801391516277","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":2,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"role":{"id":"-99","name":"","permissions":"65536","color":"","highlighted":false}},"assigned_account":null,"action_taken_by_account":{"id":"113998800956287197","username":"admin","domain":null,"created_at":"2025-02-13T21:54:17.053Z","email":"admin@localhost","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":null,"invite_request":null,"ips":[],"account":{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}},"statuses":[{"id":"113998804510619533","created_at":"2025-02-13T21:55:11.405Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test_2/statuses/113998804510619533","url":"http://localhost:3000/@mastodonpy_test_2/113998804510619533","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003eToot,
string: '{"id":"1","action_taken":true,"action_taken_at":"2025-08-15T17:32:12.112Z","category":"other","comment":"api
crimes","forwarded":false,"created_at":"2025-08-15T17:32:11.832Z","updated_at":"2025-08-15T17:32:12.114Z","account":{"id":"115033965466813222","username":"admin","domain":null,"created_at":"2025-08-15T17:30:13.983Z","email":"admin@localhost","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":null,"invite_request":null,"ips":[],"account":{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}},"target_account":{"id":"115033965921234147","username":"mastodonpy_test_2","domain":null,"created_at":"2025-08-15T17:30:21.033Z","email":"mastodonpy_test_2@localhost","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":"ja","invite_request":null,"ips":[],"account":{"id":"115033965921234147","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"role":{"id":"-99","name":"","permissions":"65536","color":"","highlighted":false}},"assigned_account":null,"action_taken_by_account":{"id":"115033965466813222","username":"admin","domain":null,"created_at":"2025-08-15T17:30:13.983Z","email":"admin@localhost","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":null,"invite_request":null,"ips":[],"account":{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}},"statuses":[{"id":"115033973165984124","created_at":"2025-08-15T17:32:11.561Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test_2/statuses/115033973165984124","url":"http://localhost:3000/@mastodonpy_test_2/115033973165984124","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003eToot,
finally!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801391516277","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":2,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}],"rules":[]}'
test suite","website":null},"account":{"id":"115033965921234147","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}],"rules":[]}'
headers:
Cache-Control:
- private, no-store
@ -343,15 +343,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"5c13f6d220525b88038c3ccc6254d28a"
- W/"8517bf5b939bb92a34ed491c25110529"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.22, sql.active_record;dur=19.86, cache_generate.active_support;dur=16.81,
cache_write.active_support;dur=0.15, instantiation.active_record;dur=1.56,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=6.50,
cache_fetch_hit.active_support;dur=0.01, render.active_model_serializers;dur=64.25,
process_action.action_controller;dur=104.44
- cache_read.active_support;dur=0.19, sql.active_record;dur=14.06, cache_generate.active_support;dur=3.02,
cache_write.active_support;dur=0.16, instantiation.active_record;dur=1.52,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=8.80,
cache_fetch_hit.active_support;dur=0.01, render.active_model_serializers;dur=43.69,
process_action.action_controller;dur=81.76
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -363,11 +363,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.897910Z'
- '2025-08-15T17:35:00.108241Z'
X-Request-Id:
- 8a6c3e65-80d6-4fea-ba17-c1bf9a33b7cf
- 160ff34c-7766-475e-9e8b-53ba0e7db753
X-Runtime:
- '0.120327'
- '0.105075'
X-XSS-Protection:
- '0'
vary:
@ -381,7 +381,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -407,10 +407,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.74, cache_generate.active_support;dur=0.87,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.25,
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.78, cache_generate.active_support;dur=0.93,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.26,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.04,
process_action.action_controller;dur=20.07
process_action.action_controller;dur=23.04
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -422,11 +422,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.101098Z'
- '2025-08-15T17:35:00.310265Z'
X-Request-Id:
- c1b4bf03-24dc-4e70-a432-11073b86d6b3
- d8cd1769-5ac0-45df-9cfe-10c2ebfa5ef4
X-Runtime:
- '0.034688'
- '0.043395'
X-XSS-Protection:
- '0'
vary:
@ -440,7 +440,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -454,9 +454,9 @@ interactions:
response:
body:
string: '{"id":"1","action_taken":false,"action_taken_at":null,"category":"other","comment":"api
crimes","forwarded":false,"created_at":"2025-02-13T21:55:11.646Z","updated_at":"2025-02-13T21:55:12.144Z","account":{"id":"113998800956287197","username":"admin","domain":null,"created_at":"2025-02-13T21:54:17.053Z","email":"admin@localhost","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":null,"invite_request":null,"ips":[],"account":{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}},"target_account":{"id":"113998801391516277","username":"mastodonpy_test_2","domain":null,"created_at":"2025-02-13T21:54:23.829Z","email":"mastodonpy_test_2@localhost","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":"ja","invite_request":null,"ips":[],"account":{"id":"113998801391516277","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"role":{"id":"-99","name":"","permissions":"65536","color":"","highlighted":false}},"assigned_account":null,"action_taken_by_account":null,"statuses":[{"id":"113998804510619533","created_at":"2025-02-13T21:55:11.405Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test_2/statuses/113998804510619533","url":"http://localhost:3000/@mastodonpy_test_2/113998804510619533","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003eToot,
crimes","forwarded":false,"created_at":"2025-08-15T17:32:11.832Z","updated_at":"2025-08-15T17:32:12.371Z","account":{"id":"115033965466813222","username":"admin","domain":null,"created_at":"2025-08-15T17:30:13.983Z","email":"admin@localhost","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":null,"invite_request":null,"ips":[],"account":{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}},"target_account":{"id":"115033965921234147","username":"mastodonpy_test_2","domain":null,"created_at":"2025-08-15T17:30:21.033Z","email":"mastodonpy_test_2@localhost","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":"ja","invite_request":null,"ips":[],"account":{"id":"115033965921234147","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"role":{"id":"-99","name":"","permissions":"65536","color":"","highlighted":false}},"assigned_account":null,"action_taken_by_account":null,"statuses":[{"id":"115033973165984124","created_at":"2025-08-15T17:32:11.561Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test_2/statuses/115033973165984124","url":"http://localhost:3000/@mastodonpy_test_2/115033973165984124","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003eToot,
finally!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801391516277","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}],"rules":[]}'
test suite","website":null},"account":{"id":"115033965921234147","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}],"rules":[]}'
headers:
Cache-Control:
- private, no-store
@ -467,15 +467,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"fdb4eb70073a188a563b84eb6bbfa203"
- W/"2a33b08a2c572d3a5944778f7d56e6f2"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.16, sql.active_record;dur=11.27, cache_generate.active_support;dur=2.87,
cache_write.active_support;dur=0.15, instantiation.active_record;dur=1.21,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=6.68,
cache_fetch_hit.active_support;dur=0.01, render.active_model_serializers;dur=36.36,
process_action.action_controller;dur=67.46
- cache_read.active_support;dur=0.14, sql.active_record;dur=12.94, cache_generate.active_support;dur=3.08,
cache_write.active_support;dur=0.15, instantiation.active_record;dur=1.11,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=8.25,
cache_fetch_hit.active_support;dur=0.01, render.active_model_serializers;dur=32.84,
process_action.action_controller;dur=69.24
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -487,11 +487,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.139826Z'
- '2025-08-15T17:35:00.366117Z'
X-Request-Id:
- 143fe11a-1023-4871-bba9-88f191f7d06a
- 960982f6-6f38-4f2a-a3a7-0ab27a0f1f28
X-Runtime:
- '0.082179'
- '0.093125'
X-XSS-Protection:
- '0'
vary:
@ -505,7 +505,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -517,9 +517,9 @@ interactions:
response:
body:
string: '[{"id":"1","action_taken":false,"action_taken_at":null,"category":"other","comment":"api
crimes","forwarded":false,"created_at":"2025-02-13T21:55:11.646Z","updated_at":"2025-02-13T21:55:12.144Z","account":{"id":"113998800956287197","username":"admin","domain":null,"created_at":"2025-02-13T21:54:17.053Z","email":"admin@localhost","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":null,"invite_request":null,"ips":[],"account":{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}},"target_account":{"id":"113998801391516277","username":"mastodonpy_test_2","domain":null,"created_at":"2025-02-13T21:54:23.829Z","email":"mastodonpy_test_2@localhost","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":"ja","invite_request":null,"ips":[],"account":{"id":"113998801391516277","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"role":{"id":"-99","name":"","permissions":"65536","color":"","highlighted":false}},"assigned_account":null,"action_taken_by_account":null,"statuses":[{"id":"113998804510619533","created_at":"2025-02-13T21:55:11.405Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test_2/statuses/113998804510619533","url":"http://localhost:3000/@mastodonpy_test_2/113998804510619533","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003eToot,
crimes","forwarded":false,"created_at":"2025-08-15T17:32:11.832Z","updated_at":"2025-08-15T17:32:12.371Z","account":{"id":"115033965466813222","username":"admin","domain":null,"created_at":"2025-08-15T17:30:13.983Z","email":"admin@localhost","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":null,"invite_request":null,"ips":[],"account":{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}},"target_account":{"id":"115033965921234147","username":"mastodonpy_test_2","domain":null,"created_at":"2025-08-15T17:30:21.033Z","email":"mastodonpy_test_2@localhost","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":"ja","invite_request":null,"ips":[],"account":{"id":"115033965921234147","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"role":{"id":"-99","name":"","permissions":"65536","color":"","highlighted":false}},"assigned_account":null,"action_taken_by_account":null,"statuses":[{"id":"115033973165984124","created_at":"2025-08-15T17:32:11.561Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test_2/statuses/115033973165984124","url":"http://localhost:3000/@mastodonpy_test_2/115033973165984124","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003eToot,
finally!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801391516277","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}],"rules":[]}]'
test suite","website":null},"account":{"id":"115033965921234147","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}],"rules":[]}]'
headers:
Cache-Control:
- private, no-store
@ -530,16 +530,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"61a0169aa4f149dc96757d03f6225149"
- W/"9a7933c8d463b437ab46e8468c563501"
Link:
- <http://localhost:3000/api/v1/admin/reports?min_id=1>; rel="prev"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.15, sql.active_record;dur=4.39, cache_generate.active_support;dur=3.23,
cache_write.active_support;dur=0.15, instantiation.active_record;dur=1.31,
- cache_read.active_support;dur=0.14, sql.active_record;dur=4.35, cache_generate.active_support;dur=2.89,
cache_write.active_support;dur=0.14, instantiation.active_record;dur=1.18,
start_processing.action_controller;dur=0.00, cache_fetch_hit.active_support;dur=0.01,
render.active_model_serializers;dur=37.40, process_action.action_controller;dur=62.68
render.active_model_serializers;dur=38.65, process_action.action_controller;dur=67.23
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -551,11 +551,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.290634Z'
- '2025-08-15T17:35:00.534716Z'
X-Request-Id:
- 0057eda0-8777-42c9-8b66-2a3335986947
- 69ce312d-05ab-4959-8444-1331e3dbcd1d
X-Runtime:
- '0.077684'
- '0.086862'
X-XSS-Protection:
- '0'
vary:
@ -569,7 +569,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -583,9 +583,9 @@ interactions:
response:
body:
string: '{"id":"1","action_taken":false,"action_taken_at":null,"category":"other","comment":"api
crimes","forwarded":false,"created_at":"2025-02-13T21:55:11.646Z","updated_at":"2025-02-13T21:55:12.439Z","account":{"id":"113998800956287197","username":"admin","domain":null,"created_at":"2025-02-13T21:54:17.053Z","email":"admin@localhost","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":null,"invite_request":null,"ips":[],"account":{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}},"target_account":{"id":"113998801391516277","username":"mastodonpy_test_2","domain":null,"created_at":"2025-02-13T21:54:23.829Z","email":"mastodonpy_test_2@localhost","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":"ja","invite_request":null,"ips":[],"account":{"id":"113998801391516277","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"role":{"id":"-99","name":"","permissions":"65536","color":"","highlighted":false}},"assigned_account":{"id":"113998800956287197","username":"admin","domain":null,"created_at":"2025-02-13T21:54:17.053Z","email":"admin@localhost","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":null,"invite_request":null,"ips":[],"account":{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}},"action_taken_by_account":null,"statuses":[{"id":"113998804510619533","created_at":"2025-02-13T21:55:11.405Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test_2/statuses/113998804510619533","url":"http://localhost:3000/@mastodonpy_test_2/113998804510619533","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003eToot,
crimes","forwarded":false,"created_at":"2025-08-15T17:32:11.832Z","updated_at":"2025-08-15T17:32:12.712Z","account":{"id":"115033965466813222","username":"admin","domain":null,"created_at":"2025-08-15T17:30:13.983Z","email":"admin@localhost","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":null,"invite_request":null,"ips":[],"account":{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}},"target_account":{"id":"115033965921234147","username":"mastodonpy_test_2","domain":null,"created_at":"2025-08-15T17:30:21.033Z","email":"mastodonpy_test_2@localhost","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":"ja","invite_request":null,"ips":[],"account":{"id":"115033965921234147","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"role":{"id":"-99","name":"","permissions":"65536","color":"","highlighted":false}},"assigned_account":{"id":"115033965466813222","username":"admin","domain":null,"created_at":"2025-08-15T17:30:13.983Z","email":"admin@localhost","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":null,"invite_request":null,"ips":[],"account":{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}},"action_taken_by_account":null,"statuses":[{"id":"115033973165984124","created_at":"2025-08-15T17:32:11.561Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test_2/statuses/115033973165984124","url":"http://localhost:3000/@mastodonpy_test_2/115033973165984124","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003eToot,
finally!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801391516277","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}],"rules":[]}'
test suite","website":null},"account":{"id":"115033965921234147","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}],"rules":[]}'
headers:
Cache-Control:
- private, no-store
@ -596,15 +596,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"8bfd7986ed8dfe3029c8cbbc031e6a4d"
- W/"d1dfe3e19e38fae0d5c49b1e34385c3d"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.21, sql.active_record;dur=12.10, cache_generate.active_support;dur=8.25,
cache_write.active_support;dur=0.15, instantiation.active_record;dur=1.44,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=6.01,
cache_fetch_hit.active_support;dur=0.01, render.active_model_serializers;dur=43.92,
process_action.action_controller;dur=73.57
- cache_read.active_support;dur=0.18, sql.active_record;dur=13.03, cache_generate.active_support;dur=2.85,
cache_write.active_support;dur=0.13, instantiation.active_record;dur=1.20,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=8.54,
cache_fetch_hit.active_support;dur=0.01, render.active_model_serializers;dur=36.07,
process_action.action_controller;dur=71.12
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -616,11 +616,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.435226Z'
- '2025-08-15T17:35:00.708174Z'
X-Request-Id:
- cea7bc34-8056-4644-93bd-076ac1f52d0d
- 436fff05-c9ae-4d54-bcdd-4f32705823f4
X-Runtime:
- '0.088653'
- '0.095290'
X-XSS-Protection:
- '0'
vary:
@ -634,7 +634,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -648,9 +648,9 @@ interactions:
response:
body:
string: '{"id":"1","action_taken":false,"action_taken_at":null,"category":"other","comment":"api
crimes","forwarded":false,"created_at":"2025-02-13T21:55:11.646Z","updated_at":"2025-02-13T21:55:12.617Z","account":{"id":"113998800956287197","username":"admin","domain":null,"created_at":"2025-02-13T21:54:17.053Z","email":"admin@localhost","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":null,"invite_request":null,"ips":[],"account":{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}},"target_account":{"id":"113998801391516277","username":"mastodonpy_test_2","domain":null,"created_at":"2025-02-13T21:54:23.829Z","email":"mastodonpy_test_2@localhost","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":"ja","invite_request":null,"ips":[],"account":{"id":"113998801391516277","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"role":{"id":"-99","name":"","permissions":"65536","color":"","highlighted":false}},"assigned_account":null,"action_taken_by_account":null,"statuses":[{"id":"113998804510619533","created_at":"2025-02-13T21:55:11.405Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test_2/statuses/113998804510619533","url":"http://localhost:3000/@mastodonpy_test_2/113998804510619533","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003eToot,
crimes","forwarded":false,"created_at":"2025-08-15T17:32:11.832Z","updated_at":"2025-08-15T17:32:12.915Z","account":{"id":"115033965466813222","username":"admin","domain":null,"created_at":"2025-08-15T17:30:13.983Z","email":"admin@localhost","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":null,"invite_request":null,"ips":[],"account":{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}},"target_account":{"id":"115033965921234147","username":"mastodonpy_test_2","domain":null,"created_at":"2025-08-15T17:30:21.033Z","email":"mastodonpy_test_2@localhost","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":"ja","invite_request":null,"ips":[],"account":{"id":"115033965921234147","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"role":{"id":"-99","name":"","permissions":"65536","color":"","highlighted":false}},"assigned_account":null,"action_taken_by_account":null,"statuses":[{"id":"115033973165984124","created_at":"2025-08-15T17:32:11.561Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test_2/statuses/115033973165984124","url":"http://localhost:3000/@mastodonpy_test_2/115033973165984124","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003eToot,
finally!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801391516277","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}],"rules":[]}'
test suite","website":null},"account":{"id":"115033965921234147","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}],"rules":[]}'
headers:
Cache-Control:
- private, no-store
@ -661,15 +661,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"da4570905d9b0613722cbb9f64dcbd0e"
- W/"1dafa264e26c72f9ee28d2f004524c12"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.16, sql.active_record;dur=10.51, cache_generate.active_support;dur=3.09,
cache_write.active_support;dur=0.16, instantiation.active_record;dur=1.30,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=5.74,
cache_fetch_hit.active_support;dur=0.01, render.active_model_serializers;dur=32.24,
process_action.action_controller;dur=62.55
- cache_read.active_support;dur=0.17, sql.active_record;dur=13.47, cache_generate.active_support;dur=3.30,
cache_write.active_support;dur=0.16, instantiation.active_record;dur=1.19,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=8.76,
cache_fetch_hit.active_support;dur=0.01, render.active_model_serializers;dur=37.85,
process_action.action_controller;dur=73.21
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -681,11 +681,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.612910Z'
- '2025-08-15T17:35:00.910831Z'
X-Request-Id:
- e9865b61-4c84-440f-b15e-2d7c0e564ed0
- 90ad2c9e-1bba-4423-8a85-b6808232973b
X-Runtime:
- '0.078315'
- '0.094586'
X-XSS-Protection:
- '0'
vary:
@ -699,7 +699,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -711,9 +711,9 @@ interactions:
response:
body:
string: '{"id":"1","action_taken":false,"action_taken_at":null,"category":"other","comment":"api
crimes","forwarded":false,"created_at":"2025-02-13T21:55:11.646Z","updated_at":"2025-02-13T21:55:12.617Z","account":{"id":"113998800956287197","username":"admin","domain":null,"created_at":"2025-02-13T21:54:17.053Z","email":"admin@localhost","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":null,"invite_request":null,"ips":[],"account":{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}},"target_account":{"id":"113998801391516277","username":"mastodonpy_test_2","domain":null,"created_at":"2025-02-13T21:54:23.829Z","email":"mastodonpy_test_2@localhost","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":"ja","invite_request":null,"ips":[],"account":{"id":"113998801391516277","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"role":{"id":"-99","name":"","permissions":"65536","color":"","highlighted":false}},"assigned_account":null,"action_taken_by_account":null,"statuses":[{"id":"113998804510619533","created_at":"2025-02-13T21:55:11.405Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test_2/statuses/113998804510619533","url":"http://localhost:3000/@mastodonpy_test_2/113998804510619533","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003eToot,
crimes","forwarded":false,"created_at":"2025-08-15T17:32:11.832Z","updated_at":"2025-08-15T17:32:12.915Z","account":{"id":"115033965466813222","username":"admin","domain":null,"created_at":"2025-08-15T17:30:13.983Z","email":"admin@localhost","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":null,"invite_request":null,"ips":[],"account":{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}},"target_account":{"id":"115033965921234147","username":"mastodonpy_test_2","domain":null,"created_at":"2025-08-15T17:30:21.033Z","email":"mastodonpy_test_2@localhost","ip":null,"confirmed":true,"suspended":false,"silenced":false,"sensitized":false,"disabled":false,"approved":true,"locale":"ja","invite_request":null,"ips":[],"account":{"id":"115033965921234147","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"role":{"id":"-99","name":"","permissions":"65536","color":"","highlighted":false}},"assigned_account":null,"action_taken_by_account":null,"statuses":[{"id":"115033973165984124","created_at":"2025-08-15T17:32:11.561Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test_2/statuses/115033973165984124","url":"http://localhost:3000/@mastodonpy_test_2/115033973165984124","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003eToot,
finally!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801391516277","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}],"rules":[]}'
test suite","website":null},"account":{"id":"115033965921234147","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}],"rules":[]}'
headers:
Cache-Control:
- private, no-store
@ -724,14 +724,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"da4570905d9b0613722cbb9f64dcbd0e"
- W/"1dafa264e26c72f9ee28d2f004524c12"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.16, sql.active_record;dur=3.92, cache_generate.active_support;dur=2.68,
cache_write.active_support;dur=0.14, instantiation.active_record;dur=1.02,
- cache_read.active_support;dur=0.17, sql.active_record;dur=4.47, cache_generate.active_support;dur=3.03,
cache_write.active_support;dur=0.26, instantiation.active_record;dur=1.49,
start_processing.action_controller;dur=0.00, cache_fetch_hit.active_support;dur=0.01,
render.active_model_serializers;dur=31.08, process_action.action_controller;dur=51.00
render.active_model_serializers;dur=37.23, process_action.action_controller;dur=60.55
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -743,11 +743,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.758428Z'
- '2025-08-15T17:35:00.089586Z'
X-Request-Id:
- 6e49cc09-bbe3-452f-a7ae-a48581baa1d2
- 599c4bae-3480-43a9-80b3-543933fcda01
X-Runtime:
- '0.067668'
- '0.080638'
X-XSS-Protection:
- '0'
vary:
@ -761,7 +761,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_3
Connection:
@ -771,12 +771,12 @@ interactions:
User-Agent:
- tests/v311
method: DELETE
uri: http://localhost:3000/api/v1/statuses/113998804510619533
uri: http://localhost:3000/api/v1/statuses/115033973165984124
response:
body:
string: '{"id":"113998804510619533","created_at":"2025-02-13T21:55:11.405Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test_2/statuses/113998804510619533","url":"http://localhost:3000/@mastodonpy_test_2/113998804510619533","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"text":"Toot,
string: '{"id":"115033973165984124","created_at":"2025-08-15T17:32:11.561Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test_2/statuses/115033973165984124","url":"http://localhost:3000/@mastodonpy_test_2/115033973165984124","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"text":"Toot,
finally!","filtered":[],"reblog":null,"application":{"name":"Mastodon.py test
suite","website":null},"account":{"id":"113998801391516277","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
suite","website":null},"account":{"id":"115033965921234147","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
@ -787,14 +787,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"e3919d87ac82009543b8d2624a0627c9"
- W/"35690fe65bdc326db1900fb4d3fee6de"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.06, sql.active_record;dur=7.84, cache_generate.active_support;dur=3.89,
cache_write.active_support;dur=0.17, instantiation.active_record;dur=0.64,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=4.92,
render.active_model_serializers;dur=14.26, process_action.action_controller;dur=43.38
- cache_read.active_support;dur=0.05, sql.active_record;dur=7.77, cache_generate.active_support;dur=3.22,
cache_write.active_support;dur=0.16, instantiation.active_record;dur=0.78,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=4.82,
render.active_model_serializers;dur=15.72, process_action.action_controller;dur=49.57
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -806,11 +806,11 @@ interactions:
X-RateLimit-Remaining:
- '29'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.897324Z'
- '2025-08-15T18:00:00.255522Z'
X-Request-Id:
- 198c044b-a7be-44ec-aca1-fff75a2a86c6
- 19c3a0a3-aa58-4f1a-a631-29fd891cedb7
X-Runtime:
- '0.062758'
- '0.070691'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -11,7 +11,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -42,10 +42,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.12, sql.active_record;dur=5.98, cache_generate.active_support;dur=15.91,
cache_write.active_support;dur=0.43, instantiation.active_record;dur=0.44,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=19.56,
process_action.action_controller;dur=48.58
- cache_read.active_support;dur=0.12, sql.active_record;dur=5.95, cache_generate.active_support;dur=15.66,
cache_write.active_support;dur=0.37, instantiation.active_record;dur=0.58,
start_processing.action_controller;dur=0.01, render.active_model_serializers;dur=19.41,
process_action.action_controller;dur=54.81
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -57,11 +57,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.610198Z'
- '2025-08-15T17:35:00.209778Z'
X-Request-Id:
- 9a726a08-c736-4e7e-81ac-a851111afdfd
- bc02d8b5-bd15-4ae0-8c12-7e66ef5ab2d3
X-Runtime:
- '0.067377'
- '0.078912'
X-XSS-Protection:
- '0'
vary:
@ -78,7 +78,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -93,28 +93,28 @@ interactions:
uri: http://localhost:3000/api/v1/admin/dimensions
response:
body:
string: '[{"key":"languages","data":[]},{"key":"sources","data":[]},{"key":"servers","data":[]},{"key":"space_usage","data":[{"key":"postgresql","human_key":"PostgreSQL","value":"18063875","unit":"bytes","human_value":"17.2
MB"},{"key":"redis","human_key":"Redis","value":"1332608","unit":"bytes","human_value":"1.27
string: '[{"key":"languages","data":[]},{"key":"sources","data":[]},{"key":"servers","data":[]},{"key":"space_usage","data":[{"key":"postgresql","human_key":"PostgreSQL","value":"18768387","unit":"bytes","human_value":"17.9
MB"},{"key":"redis","human_key":"Redis","value":"1258264","unit":"bytes","human_value":"1.2
MB"},{"key":"media","human_key":"Media storage","value":"215938","unit":"bytes","human_value":"211
KB"}]},{"key":"instance_accounts","data":[]},{"key":"instance_languages","data":[]}]'
headers:
Cache-Control:
- private, no-store
Content-Length:
- '491'
- '490'
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'; form-action 'none'
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"23fcb8a99e96dca66bc99de370229644"
- W/"dc6a4679bc8165402a42b0ad19317f12"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.09, sql.active_record;dur=10.53, cache_generate.active_support;dur=29.18,
cache_write.active_support;dur=0.27, instantiation.active_record;dur=0.46,
start_processing.action_controller;dur=0.01, render.active_model_serializers;dur=29.80,
process_action.action_controller;dur=57.87
- cache_read.active_support;dur=0.09, sql.active_record;dur=10.87, cache_generate.active_support;dur=478.68,
cache_write.active_support;dur=0.24, instantiation.active_record;dur=0.49,
start_processing.action_controller;dur=0.01, render.active_model_serializers;dur=479.20,
process_action.action_controller;dur=510.99
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -126,11 +126,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.701325Z'
- '2025-08-15T17:35:00.327804Z'
X-Request-Id:
- 4d8ada5f-95fd-47a6-8b38-f035934c36e9
- ad950435-babd-49aa-af0f-b6537e59e8a5
X-Runtime:
- '0.085862'
- '0.552366'
X-XSS-Protection:
- '0'
vary:
@ -144,7 +144,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -174,10 +174,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=111.91, cache_generate.active_support;dur=113.29,
cache_write.active_support;dur=0.54, instantiation.active_record;dur=0.47,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=3.20,
process_action.action_controller;dur=139.28
- cache_read.active_support;dur=0.04, sql.active_record;dur=224.88, cache_generate.active_support;dur=226.05,
cache_write.active_support;dur=0.55, instantiation.active_record;dur=0.38,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=2.76,
process_action.action_controller;dur=253.40
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -189,11 +189,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.796232Z'
- '2025-08-15T17:35:00.866817Z'
X-Request-Id:
- 2eec9219-5f3a-4387-81ed-ee9b58a303c0
- fbe46df2-66c8-44dd-ba64-8576fbc7d19e
X-Runtime:
- '0.158638'
- '0.276130'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -31,10 +31,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.26, sql.active_record;dur=5.15, cache_generate.active_support;dur=20.76,
cache_write.active_support;dur=0.60, instantiation.active_record;dur=3.21,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.36,
process_action.action_controller;dur=46.03
- cache_read.active_support;dur=0.04, sql.active_record;dur=1.05, cache_generate.active_support;dur=1.94,
cache_write.active_support;dur=0.13, instantiation.active_record;dur=0.35,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.04,
process_action.action_controller;dur=25.97
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -46,11 +46,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-15T16:10:00.736877Z'
- '2025-08-15T17:35:00.450845Z'
X-Request-Id:
- 6e3c04cf-1167-4ab7-a9f3-d3c16f04f4f4
- fb0ed590-b6ff-437f-b4af-d44091f85fd6
X-Runtime:
- '0.111953'
- '0.051994'
X-XSS-Protection:
- '0'
vary:
@ -64,7 +64,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -90,10 +90,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=2.06, cache_generate.active_support;dur=1.88,
cache_write.active_support;dur=0.11, instantiation.active_record;dur=0.28,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.04,
process_action.action_controller;dur=27.18
- cache_read.active_support;dur=0.04, sql.active_record;dur=2.47, cache_generate.active_support;dur=1.74,
cache_write.active_support;dur=0.12, instantiation.active_record;dur=0.35,
start_processing.action_controller;dur=0.01, render.active_model_serializers;dur=0.04,
process_action.action_controller;dur=32.02
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -105,11 +105,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-15T16:10:00.803570Z'
- '2025-08-15T17:35:00.516889Z'
X-Request-Id:
- f13147fc-de79-4163-b319-bd85261a3be8
- 3a0e1791-0914-45a8-9005-c3bd2a056b2c
X-Runtime:
- '0.052897'
- '0.068279'
X-XSS-Protection:
- '0'
vary:
@ -123,7 +123,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -149,10 +149,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=1.56, cache_generate.active_support;dur=1.97,
cache_write.active_support;dur=0.11, instantiation.active_record;dur=0.26,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.06,
process_action.action_controller;dur=30.19
- cache_read.active_support;dur=0.04, sql.active_record;dur=4.04, cache_generate.active_support;dur=1.82,
cache_write.active_support;dur=0.12, instantiation.active_record;dur=0.32,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.04,
process_action.action_controller;dur=32.35
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -164,11 +164,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-15T16:10:00.859936Z'
- '2025-08-15T17:35:00.581086Z'
X-Request-Id:
- c0db9719-8b7e-4900-8fde-7aeb49855d8e
- cfbca56a-a297-4a99-9fd8-081f8c2e469f
X-Runtime:
- '0.053876'
- '0.056016'
X-XSS-Protection:
- '0'
vary:
@ -182,7 +182,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -208,10 +208,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.03, sql.active_record;dur=0.93, cache_generate.active_support;dur=1.84,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.24,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.04,
process_action.action_controller;dur=23.99
- cache_read.active_support;dur=0.04, sql.active_record;dur=0.93, cache_generate.active_support;dur=1.85,
cache_write.active_support;dur=0.12, instantiation.active_record;dur=0.35,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.05,
process_action.action_controller;dur=25.02
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -223,11 +223,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-15T16:10:00.913971Z'
- '2025-08-15T17:35:00.646625Z'
X-Request-Id:
- 7ac2ec04-b149-4053-b233-92e00ba9c56d
- 31fe2a8c-7394-4f97-b493-b8fd3480e384
X-Runtime:
- '0.046646'
- '0.048961'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Connection:
- keep-alive
Content-Length:
@ -18,7 +18,7 @@ interactions:
uri: http://localhost:3000/api/v1/apps
response:
body:
string: '{"id":"2","name":"mastodon.py generated test app","website":null,"scopes":["read","write","follow","push"],"redirect_uris":["urn:ietf:wg:oauth:2.0:oob"],"vapid_key":"BE1WVtJ4TtrCv7gVo33aa4Hgc6mtg2W6yJlGGOdj2si5BlgCm8HpmqkdaX5y5ZiPyWcBBb3V0sDOa4GI2r6EylU=","redirect_uri":"urn:ietf:wg:oauth:2.0:oob","client_id":"KOGKtFjElhlftP-mV1wNq9SFT-SBbNwWfopMe769X2s","client_secret":"vIclIbc6oqcasTGNIUfmc91VdVInTs2ygkbR5BUXmkA"}'
string: '{"id":"2","name":"mastodon.py generated test app","website":null,"scopes":["read","write","follow","push"],"redirect_uris":["urn:ietf:wg:oauth:2.0:oob"],"vapid_key":"BPtNmLhj_FlqUHpabUpI4QNoR3B3CZQcHYvYBR5FvoLgKn7M5bsjsYqaVYxJPyGMMUS_FLtlh6zbvjrx-QwLIxk=","redirect_uri":"urn:ietf:wg:oauth:2.0:oob","client_id":"BNlAHLXOCsvjKxrhxnEyuGF2vc_jLpx-NbebOnAZG4E","client_secret":"7bQKmh95bHS1CyEFN92aw8itGYKWuImfH92o-kMAt1I"}'
headers:
Cache-Control:
- private, no-store
@ -29,14 +29,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"22e4369876036b0be841e6eae141aae1"
- W/"f34411dbf4aa808e2718205d084cdb80"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.03, sql.active_record;dur=3.77, cache_generate.active_support;dur=1.04,
cache_write.active_support;dur=0.08, start_processing.action_controller;dur=0.00,
transaction.active_record;dur=4.95, render.active_model_serializers;dur=0.27,
process_action.action_controller;dur=28.95
- cache_read.active_support;dur=0.02, sql.active_record;dur=6.21, cache_generate.active_support;dur=0.83,
cache_write.active_support;dur=0.07, start_processing.action_controller;dur=0.00,
transaction.active_record;dur=7.86, render.active_model_serializers;dur=0.18,
process_action.action_controller;dur=30.54
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -48,11 +48,11 @@ interactions:
X-RateLimit-Remaining:
- '4'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.266263Z'
- '2025-08-15T17:40:00.123979Z'
X-Request-Id:
- e77e430a-8e72-4368-acf6-dc95a61c2ad8
- 006a1315-3ebd-4893-b479-c84e7459fdeb
X-Runtime:
- '0.047221'
- '0.051343'
X-XSS-Protection:
- '0'
vary:
@ -61,71 +61,12 @@ interactions:
code: 200
message: OK
- request:
body: null
body: scope=read+write+follow+push&client_id=BNlAHLXOCsvjKxrhxnEyuGF2vc_jLpx-NbebOnAZG4E&client_secret=7bQKmh95bHS1CyEFN92aw8itGYKWuImfH92o-kMAt1I&grant_type=client_credentials
headers:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
Connection:
- keep-alive
User-Agent:
- mastodonpy
method: GET
uri: http://localhost:3000/api/v1/instance/
response:
body:
string: '{"uri":"localhost:3000","title":"Mastodon","short_description":"","description":"","email":"","version":"4.3.0","urls":{"streaming_api":"ws://localhost:4000"},"stats":{"user_count":4,"status_count":1,"domain_count":1},"thumbnail":"http://localhost:3000/packs/media/images/preview-6399aebd96ccf025654e2977454f168f.png","languages":["en"],"registrations":true,"approval_required":false,"invites_enabled":true,"configuration":{"accounts":{"max_featured_tags":10},"statuses":{"max_characters":500,"max_media_attachments":4,"characters_reserved_per_url":23},"media_attachments":{"supported_mime_types":["image/jpeg","image/png","image/gif","image/heic","image/heif","image/webp","image/avif","video/webm","video/mp4","video/quicktime","video/ogg","audio/wave","audio/wav","audio/x-wav","audio/x-pn-wave","audio/vnd.wave","audio/ogg","audio/vorbis","audio/mpeg","audio/mp3","audio/webm","audio/flac","audio/aac","audio/m4a","audio/x-m4a","audio/mp4","audio/3gpp","video/x-ms-asf"],"image_size_limit":16777216,"image_matrix_limit":33177600,"video_size_limit":103809024,"video_frame_rate_limit":120,"video_matrix_limit":8294400},"polls":{"max_options":4,"max_characters_per_option":50,"min_expiration":300,"max_expiration":2629746}},"contact_account":null,"rules":[]}'
headers:
Cache-Control:
- max-age=300, public, stale-while-revalidate=30, stale-if-error=86400
Content-Length:
- '1259'
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'; form-action 'none'
Content-Type:
- application/json; charset=utf-8
Date:
- Thu, 13 Feb 2025 21:55:28 GMT
ETag:
- W/"dcbca3473aa5bea97c52ad6cca33e333"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.18, sql.active_record;dur=2.38, cache_generate.active_support;dur=12.50,
cache_write.active_support;dur=0.47, start_processing.action_controller;dur=0.00,
instantiation.active_record;dur=0.09, cache_fetch_hit.active_support;dur=0.00,
render.active_model_serializers;dur=17.36, process_action.action_controller;dur=34.20
X-Content-Type-Options:
- nosniff
X-Frame-Options:
- SAMEORIGIN
X-Permitted-Cross-Domain-Policies:
- none
X-RateLimit-Limit:
- '300'
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.315891Z'
X-Request-Id:
- 4259e2db-74dc-44d6-92f4-bcff05fe1a97
X-Runtime:
- '0.049903'
X-XSS-Protection:
- '0'
vary:
- Accept, Origin
status:
code: 200
message: OK
- request:
body: scope=read+write+follow+push&client_id=KOGKtFjElhlftP-mV1wNq9SFT-SBbNwWfopMe769X2s&client_secret=vIclIbc6oqcasTGNIUfmc91VdVInTs2ygkbR5BUXmkA&grant_type=client_credentials
headers:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Connection:
- keep-alive
Content-Length:
@ -138,8 +79,8 @@ interactions:
uri: http://localhost:3000/oauth/token
response:
body:
string: '{"access_token":"57Z4hpz1JcKL-KII0Ovc-JTs_-yPw6AuiA4AoCb_kRU","token_type":"Bearer","scope":"read
write follow push","created_at":1739483728}'
string: '{"access_token":"w5r4OFmiP_O7GrhS1LsPRjsEclVpVVqhNrxe8UY9sO0","token_type":"Bearer","scope":"read
write follow push","created_at":1755279139}'
headers:
Cache-Control:
- no-store
@ -148,7 +89,7 @@ interactions:
Content-Security-Policy:
- 'base-uri ''none''; default-src ''none''; frame-ancestors ''none''; font-src
''self'' http://localhost:3000; img-src ''self'' data: blob: http://localhost:3000;
style-src ''self'' http://localhost:3000 ''nonce-tQzMt3Y6um5Y1FKCuTg2RA=='';
style-src ''self'' http://localhost:3000 ''nonce-QqIy68uvdRm3CDHmfBhtSA=='';
media-src ''self'' data: http://localhost:3000; manifest-src ''self'' http://localhost:3000;
form-action ''self''; child-src ''self'' blob: http://localhost:3000; worker-src
''self'' blob: http://localhost:3000; connect-src ''self'' data: blob: http://localhost:3000
@ -158,14 +99,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"3e9cb4754f23cbc4b288bb08bed07750"
- W/"d933914f0d477f1d52d1b39abe9ff2bc"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=3.86, cache_generate.active_support;dur=1.03,
- cache_read.active_support;dur=0.02, sql.active_record;dur=5.23, cache_generate.active_support;dur=0.88,
cache_write.active_support;dur=0.04, start_processing.action_controller;dur=0.00,
instantiation.active_record;dur=0.07, transaction.active_record;dur=4.26,
render.active_model_serializers;dur=0.03, process_action.action_controller;dur=11.39
instantiation.active_record;dur=0.05, transaction.active_record;dur=5.34,
render.active_model_serializers;dur=0.03, process_action.action_controller;dur=19.30
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -173,9 +114,9 @@ interactions:
X-Permitted-Cross-Domain-Policies:
- none
X-Request-Id:
- d91bb533-5416-4709-8317-75247526e9b2
- e6f77c1f-7267-4669-a472-0ce3815f7f38
X-Runtime:
- '0.026060'
- '0.043937'
X-XSS-Protection:
- '0'
vary:
@ -184,14 +125,14 @@ interactions:
code: 200
message: OK
- request:
body: username=coolguy93527&password=swordfish&email=email%40localhost93527&agreement=1&locale=en&return_detailed_error=0&client_id=KOGKtFjElhlftP-mV1wNq9SFT-SBbNwWfopMe769X2s&client_secret=vIclIbc6oqcasTGNIUfmc91VdVInTs2ygkbR5BUXmkA
body: username=coolguy11868&password=swordfish&email=email%40localhost11868&agreement=1&locale=en&return_detailed_error=0&client_id=BNlAHLXOCsvjKxrhxnEyuGF2vc_jLpx-NbebOnAZG4E&client_secret=7bQKmh95bHS1CyEFN92aw8itGYKWuImfH92o-kMAt1I
headers:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer 57Z4hpz1JcKL-KII0Ovc-JTs_-yPw6AuiA4AoCb_kRU
- Bearer w5r4OFmiP_O7GrhS1LsPRjsEclVpVVqhNrxe8UY9sO0
Connection:
- keep-alive
Content-Length:
@ -204,8 +145,8 @@ interactions:
uri: http://localhost:3000/api/v1/accounts
response:
body:
string: '{"access_token":"EElFaplQB_qieu0jN-kP_AqUIa8gmOlCq6UD4aUx0lY","token_type":"Bearer","scope":"read
write follow push","created_at":1739483728}'
string: '{"access_token":"vM32ZiYwkqQCQlJE1iKmUw9TokliE5UoO4M8w3V4dGY","token_type":"Bearer","scope":"read
write follow push","created_at":1755279139}'
headers:
Cache-Control:
- private, no-store
@ -216,15 +157,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"478904695b40638328ea24259e24b958"
- W/"868ea3e2248b8a0e041ce610730c318c"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.27, sql.active_record;dur=12.27, cache_generate.active_support;dur=4.09,
cache_write.active_support;dur=3.66, instantiation.active_record;dur=0.32,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=182.34,
- cache_read.active_support;dur=0.21, sql.active_record;dur=12.88, cache_generate.active_support;dur=3.29,
cache_write.active_support;dur=0.17, instantiation.active_record;dur=0.32,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=155.51,
unpermitted_parameters.action_controller;dur=0.00, cache_fetch_hit.active_support;dur=0.01,
enqueue.active_job;dur=0.43, process_action.action_controller;dur=248.91
enqueue.active_job;dur=0.47, process_action.action_controller;dur=220.10
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -236,11 +177,11 @@ interactions:
X-RateLimit-Remaining:
- '4'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.404629Z'
- '2025-08-15T18:00:00.229868Z'
X-Request-Id:
- 4db8c928-738c-47f5-beff-2936a3335563
- 95a100d9-f76e-4879-a47b-9337994eeb76
X-Runtime:
- '0.264160'
- '0.239155'
X-XSS-Protection:
- '0'
vary:
@ -254,9 +195,9 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer EElFaplQB_qieu0jN-kP_AqUIa8gmOlCq6UD4aUx0lY
- Bearer vM32ZiYwkqQCQlJE1iKmUw9TokliE5UoO4M8w3V4dGY
Connection:
- keep-alive
Content-Length:
@ -282,10 +223,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=6.68, cache_generate.active_support;dur=0.97,
cache_write.active_support;dur=0.12, instantiation.active_record;dur=0.32,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=6.64,
enqueue.active_job;dur=0.50, render.active_model_serializers;dur=0.03, process_action.action_controller;dur=33.75
- cache_read.active_support;dur=0.02, sql.active_record;dur=9.82, cache_generate.active_support;dur=0.92,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.31,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=9.81,
enqueue.active_job;dur=0.48, render.active_model_serializers;dur=0.02, process_action.action_controller;dur=36.74
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -297,11 +238,11 @@ interactions:
X-RateLimit-Remaining:
- '4'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.681937Z'
- '2025-08-15T18:00:00.480682Z'
X-Request-Id:
- 4d726e61-58b3-4f99-8db3-bc99500a18f4
- 73233ff2-70c1-444e-a452-d92efd44158a
X-Runtime:
- '0.054855'
- '0.058777'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Connection:
- keep-alive
Content-Length:
@ -18,7 +18,7 @@ interactions:
uri: http://localhost:3000/api/v1/apps
response:
body:
string: '{"id":"3","name":"mastodon.py generated test app","website":null,"scopes":["read","write","follow","push"],"redirect_uris":["urn:ietf:wg:oauth:2.0:oob"],"vapid_key":"BE1WVtJ4TtrCv7gVo33aa4Hgc6mtg2W6yJlGGOdj2si5BlgCm8HpmqkdaX5y5ZiPyWcBBb3V0sDOa4GI2r6EylU=","redirect_uri":"urn:ietf:wg:oauth:2.0:oob","client_id":"mcuSCFOEUR7rNfl2rggGlooZ9opM_ZFFimWILY8mQN0","client_secret":"abVrLUBhgU586xcMM3dYr8HvxJyO-zdxTizDtCPnMKE"}'
string: '{"id":"3","name":"mastodon.py generated test app","website":null,"scopes":["read","write","follow","push"],"redirect_uris":["urn:ietf:wg:oauth:2.0:oob"],"vapid_key":"BPtNmLhj_FlqUHpabUpI4QNoR3B3CZQcHYvYBR5FvoLgKn7M5bsjsYqaVYxJPyGMMUS_FLtlh6zbvjrx-QwLIxk=","redirect_uri":"urn:ietf:wg:oauth:2.0:oob","client_id":"XhJT7AirdmY0PQI7qZ-WqwvTrTYuslb2izWcWJliSb8","client_secret":"aAXTQ1NWZVKPOXh2fgaxkIFPR3d-Ihfjq6X88M6FBF4"}'
headers:
Cache-Control:
- private, no-store
@ -29,14 +29,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"8a7b94747b0450b8bc913fd52faa8cdb"
- W/"93c3da75b5336af350c5694708cd27eb"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=3.39, cache_generate.active_support;dur=0.87,
cache_write.active_support;dur=0.07, start_processing.action_controller;dur=0.00,
transaction.active_record;dur=4.32, render.active_model_serializers;dur=0.20,
process_action.action_controller;dur=23.25
- cache_read.active_support;dur=0.02, sql.active_record;dur=6.30, cache_generate.active_support;dur=0.96,
cache_write.active_support;dur=0.08, start_processing.action_controller;dur=0.00,
transaction.active_record;dur=7.04, render.active_model_serializers;dur=0.20,
process_action.action_controller;dur=28.73
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -48,11 +48,11 @@ interactions:
X-RateLimit-Remaining:
- '4'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.735430Z'
- '2025-08-15T17:40:00.550599Z'
X-Request-Id:
- a635dfb1-614e-437a-a781-48ee26b10fa1
- 9bac5ad4-5216-4d34-941e-f42bcd0bd4c6
X-Runtime:
- '0.039439'
- '0.047816'
X-XSS-Protection:
- '0'
vary:
@ -61,71 +61,12 @@ interactions:
code: 200
message: OK
- request:
body: null
body: scope=read+write+follow+push&client_id=XhJT7AirdmY0PQI7qZ-WqwvTrTYuslb2izWcWJliSb8&client_secret=aAXTQ1NWZVKPOXh2fgaxkIFPR3d-Ihfjq6X88M6FBF4&grant_type=client_credentials
headers:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
Connection:
- keep-alive
User-Agent:
- mastodonpy
method: GET
uri: http://localhost:3000/api/v1/instance/
response:
body:
string: '{"uri":"localhost:3000","title":"Mastodon","short_description":"","description":"","email":"","version":"4.3.0","urls":{"streaming_api":"ws://localhost:4000"},"stats":{"user_count":4,"status_count":1,"domain_count":1},"thumbnail":"http://localhost:3000/packs/media/images/preview-6399aebd96ccf025654e2977454f168f.png","languages":["en"],"registrations":true,"approval_required":false,"invites_enabled":true,"configuration":{"accounts":{"max_featured_tags":10},"statuses":{"max_characters":500,"max_media_attachments":4,"characters_reserved_per_url":23},"media_attachments":{"supported_mime_types":["image/jpeg","image/png","image/gif","image/heic","image/heif","image/webp","image/avif","video/webm","video/mp4","video/quicktime","video/ogg","audio/wave","audio/wav","audio/x-wav","audio/x-pn-wave","audio/vnd.wave","audio/ogg","audio/vorbis","audio/mpeg","audio/mp3","audio/webm","audio/flac","audio/aac","audio/m4a","audio/x-m4a","audio/mp4","audio/3gpp","video/x-ms-asf"],"image_size_limit":16777216,"image_matrix_limit":33177600,"video_size_limit":103809024,"video_frame_rate_limit":120,"video_matrix_limit":8294400},"polls":{"max_options":4,"max_characters_per_option":50,"min_expiration":300,"max_expiration":2629746}},"contact_account":null,"rules":[]}'
headers:
Cache-Control:
- max-age=300, public, stale-while-revalidate=30, stale-if-error=86400
Content-Length:
- '1259'
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'; form-action 'none'
Content-Type:
- application/json; charset=utf-8
Date:
- Thu, 13 Feb 2025 21:55:28 GMT
ETag:
- W/"dcbca3473aa5bea97c52ad6cca33e333"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.14, sql.active_record;dur=3.72, cache_generate.active_support;dur=7.07,
cache_write.active_support;dur=0.31, start_processing.action_controller;dur=0.00,
instantiation.active_record;dur=0.10, cache_fetch_hit.active_support;dur=0.00,
render.active_model_serializers;dur=12.34, process_action.action_controller;dur=28.73
X-Content-Type-Options:
- nosniff
X-Frame-Options:
- SAMEORIGIN
X-Permitted-Cross-Domain-Policies:
- none
X-RateLimit-Limit:
- '300'
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.777153Z'
X-Request-Id:
- 86561c63-43e9-48a0-9092-63787e3264de
X-Runtime:
- '0.043476'
X-XSS-Protection:
- '0'
vary:
- Accept, Origin
status:
code: 200
message: OK
- request:
body: scope=read+write+follow+push&client_id=mcuSCFOEUR7rNfl2rggGlooZ9opM_ZFFimWILY8mQN0&client_secret=abVrLUBhgU586xcMM3dYr8HvxJyO-zdxTizDtCPnMKE&grant_type=client_credentials
headers:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Connection:
- keep-alive
Content-Length:
@ -138,8 +79,8 @@ interactions:
uri: http://localhost:3000/oauth/token
response:
body:
string: '{"access_token":"W_EB1q4kdhtCkeaK_CQKVVsD64ngLztb9aRMX0R35yQ","token_type":"Bearer","scope":"read
write follow push","created_at":1739483728}'
string: '{"access_token":"tnRXk0jD6fBLJw_WUz5B_WSVNQVrz2O6D_zeOw0dBV4","token_type":"Bearer","scope":"read
write follow push","created_at":1755279139}'
headers:
Cache-Control:
- no-store
@ -148,7 +89,7 @@ interactions:
Content-Security-Policy:
- 'base-uri ''none''; default-src ''none''; frame-ancestors ''none''; font-src
''self'' http://localhost:3000; img-src ''self'' data: blob: http://localhost:3000;
style-src ''self'' http://localhost:3000 ''nonce-XqKHrC58OtN/TnJZiqDGwg=='';
style-src ''self'' http://localhost:3000 ''nonce-U77CJa1VyXbKI1iHPG+wnQ=='';
media-src ''self'' data: http://localhost:3000; manifest-src ''self'' http://localhost:3000;
form-action ''self''; child-src ''self'' blob: http://localhost:3000; worker-src
''self'' blob: http://localhost:3000; connect-src ''self'' data: blob: http://localhost:3000
@ -158,14 +99,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"b4a8086987032ae0bbd7e956145a2a41"
- W/"2f6a5c6bc6e20fce3259455ea536765a"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=4.32, cache_generate.active_support;dur=0.95,
- cache_read.active_support;dur=0.02, sql.active_record;dur=5.21, cache_generate.active_support;dur=0.99,
cache_write.active_support;dur=0.04, start_processing.action_controller;dur=0.00,
instantiation.active_record;dur=0.06, transaction.active_record;dur=4.76,
render.active_model_serializers;dur=0.03, process_action.action_controller;dur=11.81
instantiation.active_record;dur=0.06, transaction.active_record;dur=5.47,
render.active_model_serializers;dur=0.03, process_action.action_controller;dur=9.82
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -173,9 +114,9 @@ interactions:
X-Permitted-Cross-Domain-Policies:
- none
X-Request-Id:
- 8719b358-c4e2-47e7-9dc5-d6f0845669df
- a9fc0c8b-b5a5-44c2-878c-dc87cfc54fdb
X-Runtime:
- '0.025536'
- '0.028652'
X-XSS-Protection:
- '0'
vary:
@ -184,14 +125,14 @@ interactions:
code: 200
message: OK
- request:
body: username=coolguy09172&password=&email=email%40localhost09172&locale=en&return_detailed_error=1&client_id=mcuSCFOEUR7rNfl2rggGlooZ9opM_ZFFimWILY8mQN0&client_secret=abVrLUBhgU586xcMM3dYr8HvxJyO-zdxTizDtCPnMKE
body: username=coolguy10212&password=&email=email%40localhost10212&locale=en&return_detailed_error=1&client_id=XhJT7AirdmY0PQI7qZ-WqwvTrTYuslb2izWcWJliSb8&client_secret=aAXTQ1NWZVKPOXh2fgaxkIFPR3d-Ihfjq6X88M6FBF4
headers:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer W_EB1q4kdhtCkeaK_CQKVVsD64ngLztb9aRMX0R35yQ
- Bearer tnRXk0jD6fBLJw_WUz5B_WSVNQVrz2O6D_zeOw0dBV4
Connection:
- keep-alive
Content-Length:
@ -219,11 +160,11 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.12, sql.active_record;dur=4.57, cache_generate.active_support;dur=2.86,
cache_write.active_support;dur=0.16, instantiation.active_record;dur=0.21,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=9.23,
- cache_read.active_support;dur=0.14, sql.active_record;dur=6.48, cache_generate.active_support;dur=3.13,
cache_write.active_support;dur=0.17, instantiation.active_record;dur=0.24,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=11.61,
unpermitted_parameters.action_controller;dur=0.00, cache_fetch_hit.active_support;dur=0.01,
render.active_model_serializers;dur=0.04, process_action.action_controller;dur=31.65
render.active_model_serializers;dur=0.04, process_action.action_controller;dur=38.99
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -235,11 +176,11 @@ interactions:
X-RateLimit-Remaining:
- '4'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.858379Z'
- '2025-08-15T18:00:00.640674Z'
X-Request-Id:
- 5c6e8980-b32a-481a-a20b-cd722a501c38
- 77a82625-438d-45ef-b607-e3c0388900d0
X-Runtime:
- '0.046271'
- '0.058739'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -16,7 +16,7 @@ interactions:
uri: http://localhost:3000/api/v1/apps/verify_credentials
response:
body:
string: '{"id":"1234567890123456","name":"Mastodon.py test suite","website":null,"scopes":["read","write","follow","push","admin:read","admin:write"],"redirect_uris":["urn:ietf:wg:oauth:2.0:oob"],"vapid_key":"BE1WVtJ4TtrCv7gVo33aa4Hgc6mtg2W6yJlGGOdj2si5BlgCm8HpmqkdaX5y5ZiPyWcBBb3V0sDOa4GI2r6EylU=","redirect_uri":"urn:ietf:wg:oauth:2.0:oob"}'
string: '{"id":"1234567890123456","name":"Mastodon.py test suite","website":null,"scopes":["read","write","follow","push","admin:read","admin:write"],"redirect_uris":["urn:ietf:wg:oauth:2.0:oob"],"vapid_key":"BPtNmLhj_FlqUHpabUpI4QNoR3B3CZQcHYvYBR5FvoLgKn7M5bsjsYqaVYxJPyGMMUS_FLtlh6zbvjrx-QwLIxk=","redirect_uri":"urn:ietf:wg:oauth:2.0:oob"}'
headers:
Cache-Control:
- private, no-store
@ -27,14 +27,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"26899c02ec7c99e51e2875bb7227b91d"
- W/"9d7797f58bcfda5e2e9b11c672b4696b"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.85, cache_generate.active_support;dur=0.93,
cache_write.active_support;dur=0.09, instantiation.active_record;dur=0.40,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.25,
process_action.action_controller;dur=21.31
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.61, cache_generate.active_support;dur=0.91,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.29,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.22,
process_action.action_controller;dur=22.67
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -46,11 +46,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.218170Z'
- '2025-08-15T17:35:00.069467Z'
X-Request-Id:
- ac529128-4731-494e-b58c-f513aa398ad7
- a84361e6-4766-4188-b010-5dc2df8294e4
X-Runtime:
- '0.038699'
- '0.044226'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -20,10 +20,10 @@ interactions:
uri: http://localhost:3000/api/v1/statuses
response:
body:
string: '{"id":"113998806901656443","created_at":"2025-02-13T21:55:47.889Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/113998806901656443","url":"http://localhost:3000/@mastodonpy_test/113998806901656443","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eToot!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":0,"statuses_count":6,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
string: '{"id":"115033976435487760","created_at":"2025-08-15T17:33:01.449Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/115033976435487760","url":"http://localhost:3000/@mastodonpy_test/115033976435487760","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eToot!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":0,"statuses_count":5,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
@ -34,14 +34,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"eca933d1e43b76d323a59e7d071a4a8c"
- W/"4a07fd01e20dc43650128cce4d6df803"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.06, sql.active_record;dur=10.44, cache_generate.active_support;dur=3.02,
cache_write.active_support;dur=0.13, instantiation.active_record;dur=0.50,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=4.60,
render.active_model_serializers;dur=10.53, process_action.action_controller;dur=46.01
- cache_read.active_support;dur=0.05, sql.active_record;dur=14.17, cache_generate.active_support;dur=2.79,
cache_write.active_support;dur=0.14, instantiation.active_record;dur=0.52,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=5.51,
render.active_model_serializers;dur=10.03, process_action.action_controller;dur=51.87
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -51,13 +51,13 @@ interactions:
X-RateLimit-Limit:
- '300'
X-RateLimit-Remaining:
- '290'
- '289'
X-RateLimit-Reset:
- '2025-02-14T00:00:00.912703Z'
- '2025-08-15T18:00:00.475647Z'
X-Request-Id:
- 18781f81-ed4a-4134-ab78-d6c5a0752e37
- a3c19ef1-f50f-4d43-86b1-2d471e26d4f6
X-Runtime:
- '0.060844'
- '0.071622'
X-XSS-Protection:
- '0'
vary:
@ -71,7 +71,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -81,13 +81,13 @@ interactions:
User-Agent:
- tests/v311
method: DELETE
uri: http://localhost:3000/api/v1/statuses/113998806901656443
uri: http://localhost:3000/api/v1/statuses/115033976435487760
response:
body:
string: '{"id":"113998806901656443","created_at":"2025-02-13T21:55:47.889Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/113998806901656443","url":"http://localhost:3000/@mastodonpy_test/113998806901656443","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"text":"Toot!","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":0,"statuses_count":5,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
string: '{"id":"115033976435487760","created_at":"2025-08-15T17:33:01.449Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/115033976435487760","url":"http://localhost:3000/@mastodonpy_test/115033976435487760","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"text":"Toot!","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":0,"statuses_count":4,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
@ -98,14 +98,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"0ba178d6f41034c01a9e979ada8f8177"
- W/"306656d8a1987da234d1f893a1613032"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.06, sql.active_record;dur=5.61, cache_generate.active_support;dur=3.10,
cache_write.active_support;dur=0.17, instantiation.active_record;dur=0.66,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=2.86,
render.active_model_serializers;dur=13.51, process_action.action_controller;dur=41.09
- cache_read.active_support;dur=0.06, sql.active_record;dur=7.21, cache_generate.active_support;dur=2.80,
cache_write.active_support;dur=0.15, instantiation.active_record;dur=0.68,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=4.73,
render.active_model_serializers;dur=13.22, process_action.action_controller;dur=45.06
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -117,11 +117,11 @@ interactions:
X-RateLimit-Remaining:
- '29'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.070746Z'
- '2025-08-15T18:00:00.616351Z'
X-Request-Id:
- 9679127a-a92c-4a49-9615-4ac859765173
- d6e54777-cb4f-423c-b3dd-6877ae4a4de3
X-Runtime:
- '0.065815'
- '0.065594'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -0,0 +1,122 @@
interactions:
- request:
body: null
headers:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
- keep-alive
User-Agent:
- tests/v311
method: GET
uri: http://localhost:3000/.well-known/oauth-authorization-server
response:
body:
string: '{"issuer":"http://localhost:3000/","authorization_endpoint":"http://localhost:3000/oauth/authorize","token_endpoint":"http://localhost:3000/oauth/token","revocation_endpoint":"http://localhost:3000/oauth/revoke","scopes_supported":["read","profile","write","write:accounts","write:blocks","write:bookmarks","write:conversations","write:favourites","write:filters","write:follows","write:lists","write:media","write:mutes","write:notifications","write:reports","write:statuses","read:accounts","read:blocks","read:bookmarks","read:favourites","read:filters","read:follows","read:lists","read:mutes","read:notifications","read:search","read:statuses","follow","push","admin:read","admin:read:accounts","admin:read:reports","admin:read:domain_allows","admin:read:domain_blocks","admin:read:ip_blocks","admin:read:email_domain_blocks","admin:read:canonical_email_blocks","admin:write","admin:write:accounts","admin:write:reports","admin:write:domain_allows","admin:write:domain_blocks","admin:write:ip_blocks","admin:write:email_domain_blocks","admin:write:canonical_email_blocks"],"response_types_supported":["code"],"response_modes_supported":["query","fragment","form_post"],"grant_types_supported":["authorization_code","password","client_credentials"],"token_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post"],"code_challenge_methods_supported":["S256"],"service_documentation":"https://docs.joinmastodon.org/","app_registration_endpoint":"http://localhost:3000/api/v1/apps"}'
headers:
Cache-Control:
- max-age=0, private, must-revalidate
Content-Length:
- '1503'
Content-Security-Policy:
- 'base-uri ''none''; default-src ''none''; frame-ancestors ''none''; font-src
''self'' http://localhost:3000; img-src ''self'' data: blob: http://localhost:3000;
style-src ''self'' http://localhost:3000 ''nonce-pP9dN3xIFq3IZSsw+iCFug=='';
media-src ''self'' data: http://localhost:3000; manifest-src ''self'' http://localhost:3000;
form-action ''self''; child-src ''self'' blob: http://localhost:3000; worker-src
''self'' blob: http://localhost:3000; connect-src ''self'' data: blob: http://localhost:3000
ws://localhost:4000 ws://localhost:3035 http://localhost:3035; script-src
''self'' ''unsafe-inline'' ''unsafe-eval'' http://localhost:3000; frame-src
''self'' https: http:'
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"af6a0b2cfc0c377eff2294e0b2f9c31c"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- sql.active_record;dur=8.58, cache_read.active_support;dur=0.08, cache_generate.active_support;dur=15.46,
cache_write.active_support;dur=0.35, start_processing.action_controller;dur=0.01,
render.active_model_serializers;dur=21.58, process_action.action_controller;dur=72.23
X-Content-Type-Options:
- nosniff
X-Frame-Options:
- SAMEORIGIN
X-Permitted-Cross-Domain-Policies:
- none
X-Request-Id:
- cec35820-eafe-4179-90d9-c4b02040586b
X-Runtime:
- '0.240675'
X-XSS-Protection:
- '0'
vary:
- Origin
status:
code: 200
message: OK
- request:
body: null
headers:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
- keep-alive
User-Agent:
- tests/v311
method: GET
uri: http://localhost:3000/.well-known/oauth-authorization-server
response:
body:
string: '{"issuer":"http://localhost:3000/","authorization_endpoint":"http://localhost:3000/oauth/authorize","token_endpoint":"http://localhost:3000/oauth/token","revocation_endpoint":"http://localhost:3000/oauth/revoke","scopes_supported":["read","profile","write","write:accounts","write:blocks","write:bookmarks","write:conversations","write:favourites","write:filters","write:follows","write:lists","write:media","write:mutes","write:notifications","write:reports","write:statuses","read:accounts","read:blocks","read:bookmarks","read:favourites","read:filters","read:follows","read:lists","read:mutes","read:notifications","read:search","read:statuses","follow","push","admin:read","admin:read:accounts","admin:read:reports","admin:read:domain_allows","admin:read:domain_blocks","admin:read:ip_blocks","admin:read:email_domain_blocks","admin:read:canonical_email_blocks","admin:write","admin:write:accounts","admin:write:reports","admin:write:domain_allows","admin:write:domain_blocks","admin:write:ip_blocks","admin:write:email_domain_blocks","admin:write:canonical_email_blocks"],"response_types_supported":["code"],"response_modes_supported":["query","fragment","form_post"],"grant_types_supported":["authorization_code","password","client_credentials"],"token_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post"],"code_challenge_methods_supported":["S256"],"service_documentation":"https://docs.joinmastodon.org/","app_registration_endpoint":"http://localhost:3000/api/v1/apps"}'
headers:
Cache-Control:
- max-age=0, private, must-revalidate
Content-Length:
- '1503'
Content-Security-Policy:
- 'base-uri ''none''; default-src ''none''; frame-ancestors ''none''; font-src
''self'' http://localhost:3000; img-src ''self'' data: blob: http://localhost:3000;
style-src ''self'' http://localhost:3000 ''nonce-9j1uHRtysQ33TtphdJNkPQ=='';
media-src ''self'' data: http://localhost:3000; manifest-src ''self'' http://localhost:3000;
form-action ''self''; child-src ''self'' blob: http://localhost:3000; worker-src
''self'' blob: http://localhost:3000; connect-src ''self'' data: blob: http://localhost:3000
ws://localhost:4000 ws://localhost:3035 http://localhost:3035; script-src
''self'' ''unsafe-inline'' ''unsafe-eval'' http://localhost:3000; frame-src
''self'' https: http:'
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"af6a0b2cfc0c377eff2294e0b2f9c31c"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- sql.active_record;dur=8.26, cache_read.active_support;dur=0.08, cache_generate.active_support;dur=14.58,
cache_write.active_support;dur=0.40, start_processing.action_controller;dur=0.01,
render.active_model_serializers;dur=17.50, process_action.action_controller;dur=63.44
X-Content-Type-Options:
- nosniff
X-Frame-Options:
- SAMEORIGIN
X-Permitted-Cross-Domain-Policies:
- none
X-Request-Id:
- 19e9fff0-29be-45f6-8378-79aff9d309da
X-Runtime:
- '0.188137'
X-XSS-Protection:
- '0'
vary:
- Origin
status:
code: 200
message: OK
version: 1

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -31,10 +31,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=1.44, cache_generate.active_support;dur=0.97,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.28,
start_processing.action_controller;dur=0.01, render.active_model_serializers;dur=0.05,
process_action.action_controller;dur=22.70
- cache_read.active_support;dur=0.02, sql.active_record;dur=1.52, cache_generate.active_support;dur=0.88,
cache_write.active_support;dur=0.06, instantiation.active_record;dur=0.22,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.04,
process_action.action_controller;dur=24.66
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -46,11 +46,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T21:55:00.366434Z'
- '2025-08-15T17:35:00.147872Z'
X-Request-Id:
- 79b6d656-0285-483b-9b1c-bd3d1b9dea94
- 1f3e1efb-e28d-40f0-9a2e-0e9322f27d57
X-Runtime:
- '0.041322'
- '0.046522'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -20,10 +20,10 @@ interactions:
uri: http://localhost:3000/api/v1/statuses
response:
body:
string: '{"id":"113998804890027358","created_at":"2025-02-13T21:55:17.195Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/113998804890027358","url":"http://localhost:3000/@mastodonpy_test/113998804890027358","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eToot!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
string: '{"id":"115033973580607239","created_at":"2025-08-15T17:32:17.887Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/115033973580607239","url":"http://localhost:3000/@mastodonpy_test/115033973580607239","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eToot!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
@ -34,14 +34,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"b467dea16f2dcaff6bc5e8d859789b7e"
- W/"7cb6debe203176d2c2fd49a56d0cd290"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.06, sql.active_record;dur=12.24, cache_generate.active_support;dur=3.41,
cache_write.active_support;dur=0.15, instantiation.active_record;dur=0.45,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=4.61,
render.active_model_serializers;dur=12.76, process_action.action_controller;dur=49.59
- cache_read.active_support;dur=0.05, sql.active_record;dur=14.06, cache_generate.active_support;dur=2.65,
cache_write.active_support;dur=0.12, instantiation.active_record;dur=0.43,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=5.87,
render.active_model_serializers;dur=10.12, process_action.action_controller;dur=50.96
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -53,11 +53,11 @@ interactions:
X-RateLimit-Remaining:
- '296'
X-RateLimit-Reset:
- '2025-02-14T00:00:00.221837Z'
- '2025-08-15T18:00:00.913691Z'
X-Request-Id:
- 958d0971-72fc-47bc-9a6e-4f0e84b9faac
- 98af649a-1fed-477e-8446-325a6c442bf5
X-Runtime:
- '0.074135'
- '0.070451'
X-XSS-Protection:
- '0'
vary:
@ -71,7 +71,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -81,13 +81,13 @@ interactions:
User-Agent:
- tests/v311
method: POST
uri: http://localhost:3000/api/v1/statuses/113998804890027358/bookmark
uri: http://localhost:3000/api/v1/statuses/115033973580607239/bookmark
response:
body:
string: '{"id":"113998804890027358","created_at":"2025-02-13T21:55:17.195Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/113998804890027358","url":"http://localhost:3000/@mastodonpy_test/113998804890027358","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":true,"pinned":false,"content":"\u003cp\u003eToot!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
string: '{"id":"115033973580607239","created_at":"2025-08-15T17:32:17.887Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/115033973580607239","url":"http://localhost:3000/@mastodonpy_test/115033973580607239","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":true,"pinned":false,"content":"\u003cp\u003eToot!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
@ -98,14 +98,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"541292638ddc9bcfdb3f3ab11a7f51e4"
- W/"ffa05686a755656daaa31b7b81113e18"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.07, sql.active_record;dur=10.65, cache_generate.active_support;dur=8.98,
cache_write.active_support;dur=0.17, instantiation.active_record;dur=0.89,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=14.12,
render.active_model_serializers;dur=67.04, process_action.action_controller;dur=111.47
- cache_read.active_support;dur=0.05, sql.active_record;dur=8.01, cache_generate.active_support;dur=3.00,
cache_write.active_support;dur=0.13, instantiation.active_record;dur=0.58,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=5.31,
render.active_model_serializers;dur=25.27, process_action.action_controller;dur=57.47
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -117,11 +117,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.291136Z'
- '2025-08-15T17:35:00.989171Z'
X-Request-Id:
- f653c461-8546-4e88-8ed2-60879e711909
- cd6290b7-8faf-4eb5-8732-9377dfc0d3cd
X-Runtime:
- '0.131744'
- '0.079115'
X-XSS-Protection:
- '0'
vary:
@ -135,7 +135,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -146,10 +146,10 @@ interactions:
uri: http://localhost:3000/api/v1/bookmarks
response:
body:
string: '[{"id":"113998804890027358","created_at":"2025-02-13T21:55:17.195Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/113998804890027358","url":"http://localhost:3000/@mastodonpy_test/113998804890027358","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":true,"pinned":false,"content":"\u003cp\u003eToot!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}]'
string: '[{"id":"115033973580607239","created_at":"2025-08-15T17:32:17.887Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/115033973580607239","url":"http://localhost:3000/@mastodonpy_test/115033973580607239","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":true,"pinned":false,"content":"\u003cp\u003eToot!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}]'
headers:
Cache-Control:
- private, no-store
@ -160,16 +160,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"a419d1ad1b4f011e90fa8387b9ef68a5"
- W/"6dfe08eaebadcebd2fd41ca5d5956bf1"
Link:
- <http://localhost:3000/api/v1/bookmarks?min_id=1>; rel="prev"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.06, sql.active_record;dur=3.73, cache_generate.active_support;dur=4.08,
cache_write.active_support;dur=0.15, instantiation.active_record;dur=1.92,
start_processing.action_controller;dur=0.01, render.active_model_serializers;dur=4.31,
process_action.action_controller;dur=66.35
- cache_read.active_support;dur=0.05, sql.active_record;dur=3.09, cache_generate.active_support;dur=2.83,
cache_write.active_support;dur=0.14, instantiation.active_record;dur=1.77,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.08,
process_action.action_controller;dur=40.66
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -181,11 +181,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.500145Z'
- '2025-08-15T17:35:00.111861Z'
X-Request-Id:
- 328ead88-1354-44fa-a087-ab8cdcf77ba9
- b45eaf79-158d-4636-9cae-09b9b1ee684e
X-Runtime:
- '0.125015'
- '0.065105'
X-XSS-Protection:
- '0'
vary:
@ -199,7 +199,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -210,10 +210,10 @@ interactions:
uri: http://localhost:3000/api/v1/bookmarks?limit=1
response:
body:
string: '[{"id":"113998804890027358","created_at":"2025-02-13T21:55:17.195Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/113998804890027358","url":"http://localhost:3000/@mastodonpy_test/113998804890027358","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":true,"pinned":false,"content":"\u003cp\u003eToot!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}]'
string: '[{"id":"115033973580607239","created_at":"2025-08-15T17:32:17.887Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/115033973580607239","url":"http://localhost:3000/@mastodonpy_test/115033973580607239","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":true,"pinned":false,"content":"\u003cp\u003eToot!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}]'
headers:
Cache-Control:
- private, no-store
@ -224,17 +224,17 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"a419d1ad1b4f011e90fa8387b9ef68a5"
- W/"6dfe08eaebadcebd2fd41ca5d5956bf1"
Link:
- <http://localhost:3000/api/v1/bookmarks?limit=1&max_id=1>; rel="next", <http://localhost:3000/api/v1/bookmarks?limit=1&min_id=1>;
rel="prev"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.06, sql.active_record;dur=3.13, cache_generate.active_support;dur=3.11,
cache_write.active_support;dur=0.14, instantiation.active_record;dur=0.84,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=3.84,
process_action.action_controller;dur=36.75
- cache_read.active_support;dur=0.05, sql.active_record;dur=3.14, cache_generate.active_support;dur=2.86,
cache_write.active_support;dur=0.17, instantiation.active_record;dur=0.82,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.14,
process_action.action_controller;dur=39.74
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -246,11 +246,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.605041Z'
- '2025-08-15T17:35:00.213245Z'
X-Request-Id:
- f77d76e9-ca2a-4fb6-9374-7d4115a0559e
- a24619fd-383f-42ac-962e-b11f99be72a2
X-Runtime:
- '0.052724'
- '0.061376'
X-XSS-Protection:
- '0'
vary:
@ -264,7 +264,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -274,13 +274,13 @@ interactions:
User-Agent:
- tests/v311
method: POST
uri: http://localhost:3000/api/v1/statuses/113998804890027358/unbookmark
uri: http://localhost:3000/api/v1/statuses/115033973580607239/unbookmark
response:
body:
string: '{"id":"113998804890027358","created_at":"2025-02-13T21:55:17.195Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/113998804890027358","url":"http://localhost:3000/@mastodonpy_test/113998804890027358","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eToot!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
string: '{"id":"115033973580607239","created_at":"2025-08-15T17:32:17.887Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/115033973580607239","url":"http://localhost:3000/@mastodonpy_test/115033973580607239","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eToot!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
@ -291,14 +291,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"b467dea16f2dcaff6bc5e8d859789b7e"
- W/"7cb6debe203176d2c2fd49a56d0cd290"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.06, sql.active_record;dur=7.54, cache_generate.active_support;dur=2.92,
cache_write.active_support;dur=0.15, instantiation.active_record;dur=0.89,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=8.00,
render.active_model_serializers;dur=8.92, process_action.action_controller;dur=45.30
- cache_read.active_support;dur=0.05, sql.active_record;dur=7.11, cache_generate.active_support;dur=2.74,
cache_write.active_support;dur=0.13, instantiation.active_record;dur=0.74,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=5.09,
render.active_model_serializers;dur=9.02, process_action.action_controller;dur=42.59
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -310,11 +310,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.688805Z'
- '2025-08-15T17:35:00.315841Z'
X-Request-Id:
- 599fdc14-7568-411a-861f-39fe059cc620
- 7209c4a5-87f0-46e2-aa05-185bc9e5a74d
X-Runtime:
- '0.062197'
- '0.065120'
X-XSS-Protection:
- '0'
vary:
@ -328,7 +328,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -354,10 +354,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=1.02, cache_generate.active_support;dur=2.23,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.20,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.06,
process_action.action_controller;dur=27.89
- cache_read.active_support;dur=0.04, sql.active_record;dur=1.05, cache_generate.active_support;dur=2.47,
cache_write.active_support;dur=0.09, instantiation.active_record;dur=0.23,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.04,
process_action.action_controller;dur=24.47
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -369,11 +369,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.776683Z'
- '2025-08-15T17:35:00.428456Z'
X-Request-Id:
- 82b0da0c-e4c4-4fff-a544-a14c6a6190a1
- 33e4eed5-3688-44d3-87c5-9368d4f27bf0
X-Runtime:
- '0.042062'
- '0.043774'
X-XSS-Protection:
- '0'
vary:
@ -387,7 +387,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -397,13 +397,13 @@ interactions:
User-Agent:
- tests/v311
method: DELETE
uri: http://localhost:3000/api/v1/statuses/113998804890027358
uri: http://localhost:3000/api/v1/statuses/115033973580607239
response:
body:
string: '{"id":"113998804890027358","created_at":"2025-02-13T21:55:17.195Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/113998804890027358","url":"http://localhost:3000/@mastodonpy_test/113998804890027358","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"text":"Toot!","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
string: '{"id":"115033973580607239","created_at":"2025-08-15T17:32:17.887Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/115033973580607239","url":"http://localhost:3000/@mastodonpy_test/115033973580607239","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"text":"Toot!","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
@ -414,14 +414,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"76d3bb638849d7f951a181f15801256c"
- W/"4e75b2f86777e16498bfbf552a6b5515"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.05, sql.active_record;dur=6.82, cache_generate.active_support;dur=3.16,
cache_write.active_support;dur=0.15, instantiation.active_record;dur=0.75,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=3.42,
render.active_model_serializers;dur=15.32, process_action.action_controller;dur=43.85
- cache_read.active_support;dur=0.05, sql.active_record;dur=7.77, cache_generate.active_support;dur=2.67,
cache_write.active_support;dur=0.14, instantiation.active_record;dur=0.70,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=4.74,
render.active_model_serializers;dur=13.61, process_action.action_controller;dur=53.38
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -433,11 +433,11 @@ interactions:
X-RateLimit-Remaining:
- '29'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.823675Z'
- '2025-08-15T18:00:00.481466Z'
X-Request-Id:
- 3ce6fcfd-eb3b-41d1-bc77-b46c0671da58
- 37be5642-6db5-411b-9aec-40fe36183c29
X-Runtime:
- '0.058367'
- '0.072585'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -16,7 +16,7 @@ interactions:
uri: http://localhost:3000/api/v1/accounts/verify_credentials
response:
body:
string: '{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":5,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"source":{"privacy":"public","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[],"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}'
string: '{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":5,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"source":{"privacy":"public","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[],"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}'
headers:
Cache-Control:
- private, no-store
@ -27,14 +27,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"40a7bdc4b47ef2294afdf70a062f2d7f"
- W/"7c82dbc2e278dbcef139e28b05eb1aed"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.03, sql.active_record;dur=1.06, cache_generate.active_support;dur=1.69,
- cache_read.active_support;dur=0.03, sql.active_record;dur=0.98, cache_generate.active_support;dur=1.50,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.32,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.60,
process_action.action_controller;dur=22.53
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.18,
process_action.action_controller;dur=25.29
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -46,11 +46,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.543960Z'
- '2025-08-15T17:40:00.028577Z'
X-Request-Id:
- a653c3dc-0989-466c-8983-15f01357cf23
- c6231a7c-857c-4f1f-b90e-569528e2a0d4
X-Runtime:
- '0.036731'
- '0.044893'
X-XSS-Protection:
- '0'
vary:
@ -64,7 +64,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_3
Connection:
@ -79,11 +79,11 @@ interactions:
uri: http://localhost:3000/api/v1/statuses
response:
body:
string: '{"id":"113998819663031635","created_at":"2025-02-13T21:59:02.614Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"direct","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test_2/statuses/113998819663031635","url":"http://localhost:3000/@mastodonpy_test_2/113998819663031635","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003e\u003cspan
string: '{"id":"115033992403523136","created_at":"2025-08-15T17:37:05.103Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"direct","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test_2/statuses/115033992403523136","url":"http://localhost:3000/@mastodonpy_test_2/115033992403523136","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003e\u003cspan
class=\"h-card\" translate=\"no\"\u003e\u003ca href=\"http://localhost:3000/@admin\"
class=\"u-url mention\"\u003e@\u003cspan\u003eadmin\u003c/span\u003e\u003c/a\u003e\u003c/span\u003e
ilu bby ;3\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801391516277","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":2,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"media_attachments":[],"mentions":[{"id":"113998800956287197","username":"admin","url":"http://localhost:3000/@admin","acct":"admin"}],"tags":[],"emojis":[],"card":null,"poll":null}'
test suite","website":null},"account":{"id":"115033965921234147","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":2,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"media_attachments":[],"mentions":[{"id":"115033965466813222","username":"admin","url":"http://localhost:3000/@admin","acct":"admin"}],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
@ -94,14 +94,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"59125526c00e24813449c7e20d140036"
- W/"833ec222b6cc8a80c73e58424685f99f"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.05, sql.active_record;dur=8.37, cache_generate.active_support;dur=2.67,
cache_write.active_support;dur=0.15, instantiation.active_record;dur=0.80,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=9.51,
render.active_model_serializers;dur=10.25, process_action.action_controller;dur=48.46
- cache_read.active_support;dur=0.06, sql.active_record;dur=10.95, cache_generate.active_support;dur=3.11,
cache_write.active_support;dur=0.13, instantiation.active_record;dur=0.69,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=13.83,
render.active_model_serializers;dur=10.80, process_action.action_controller;dur=56.28
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -113,11 +113,11 @@ interactions:
X-RateLimit-Remaining:
- '256'
X-RateLimit-Reset:
- '2025-02-14T00:00:00.634998Z'
- '2025-08-15T18:00:00.131221Z'
X-Request-Id:
- 53333b34-08af-4ce7-bf67-47641d61ab45
- a0e7b5b9-4bef-4062-8bee-c869fb443429
X-Runtime:
- '0.063767'
- '0.075451'
X-XSS-Protection:
- '0'
vary:
@ -131,7 +131,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_3
Connection:
@ -142,17 +142,17 @@ interactions:
uri: http://localhost:3000/api/v1/conversations/
response:
body:
string: '[{"id":"5","unread":false,"accounts":[{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":5,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]}],"last_status":{"id":"113998819663031635","created_at":"2025-02-13T21:59:02.614Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"direct","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test_2/statuses/113998819663031635","url":"http://localhost:3000/@mastodonpy_test_2/113998819663031635","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003e\u003cspan
string: '[{"id":"5","unread":false,"accounts":[{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":5,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]}],"last_status":{"id":"115033992403523136","created_at":"2025-08-15T17:37:05.103Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"direct","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test_2/statuses/115033992403523136","url":"http://localhost:3000/@mastodonpy_test_2/115033992403523136","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003e\u003cspan
class=\"h-card\" translate=\"no\"\u003e\u003ca href=\"http://localhost:3000/@admin\"
class=\"u-url mention\"\u003e@\u003cspan\u003eadmin\u003c/span\u003e\u003c/a\u003e\u003c/span\u003e
ilu bby ;3\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801391516277","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":2,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"media_attachments":[],"mentions":[{"id":"113998800956287197","username":"admin","url":"http://localhost:3000/@admin","acct":"admin"}],"tags":[],"emojis":[],"card":null,"poll":null}},{"id":"2","unread":false,"accounts":[{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":1,"statuses_count":4,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]}],"last_status":{"id":"113998814324184078","created_at":"2025-02-13T21:57:41.150Z","in_reply_to_id":"113998814250739998","in_reply_to_account_id":"113998801242326861","sensitive":false,"spoiler_text":"","visibility":"direct","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test_2/statuses/113998814324184078","url":"http://localhost:3000/@mastodonpy_test_2/113998814324184078","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003e\u003cspan
test suite","website":null},"account":{"id":"115033965921234147","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":2,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"media_attachments":[],"mentions":[{"id":"115033965466813222","username":"admin","url":"http://localhost:3000/@admin","acct":"admin"}],"tags":[],"emojis":[],"card":null,"poll":null}},{"id":"2","unread":false,"accounts":[{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":1,"statuses_count":4,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]}],"last_status":{"id":"115033987089394559","created_at":"2025-08-15T17:35:44.016Z","in_reply_to_id":"115033987016590690","in_reply_to_account_id":"115033965771926537","sensitive":false,"spoiler_text":"","visibility":"direct","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test_2/statuses/115033987089394559","url":"http://localhost:3000/@mastodonpy_test_2/115033987089394559","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003e\u003cspan
class=\"h-card\" translate=\"no\"\u003e\u003ca href=\"http://localhost:3000/@mastodonpy_test\"
class=\"u-url mention\"\u003e@\u003cspan\u003emastodonpy_test\u003c/span\u003e\u003c/a\u003e\u003c/span\u003e
pssssst!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801391516277","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":2,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"media_attachments":[],"mentions":[{"id":"113998801242326861","username":"mastodonpy_test","url":"http://localhost:3000/@mastodonpy_test","acct":"mastodonpy_test"}],"tags":[],"emojis":[],"card":null,"poll":null}}]'
test suite","website":null},"account":{"id":"115033965921234147","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":2,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"media_attachments":[],"mentions":[{"id":"115033965771926537","username":"mastodonpy_test","url":"http://localhost:3000/@mastodonpy_test","acct":"mastodonpy_test"}],"tags":[],"emojis":[],"card":null,"poll":null}}]'
headers:
Cache-Control:
- private, no-store
@ -163,16 +163,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"aed416f21b0dc4aedf00260d7e73e7a7"
- W/"e407ece1f02b43c971f27cd80d2ec4b9"
Link:
- <http://localhost:3000/api/v1/conversations?min_id=113998819663031635>; rel="prev"
- <http://localhost:3000/api/v1/conversations?min_id=115033992403523136>; rel="prev"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.13, sql.active_record;dur=8.48, cache_generate.active_support;dur=2.69,
cache_write.active_support;dur=0.13, instantiation.active_record;dur=5.27,
- cache_read.active_support;dur=0.14, sql.active_record;dur=5.37, cache_generate.active_support;dur=2.76,
cache_write.active_support;dur=0.12, instantiation.active_record;dur=4.67,
start_processing.action_controller;dur=0.00, cache_fetch_hit.active_support;dur=0.01,
render.active_model_serializers;dur=19.68, process_action.action_controller;dur=69.06
render.active_model_serializers;dur=18.63, process_action.action_controller;dur=59.95
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -184,11 +184,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.701151Z'
- '2025-08-15T17:40:00.210592Z'
X-Request-Id:
- f12aa3b1-5ee0-4647-904f-b826759f5df3
- c36143d7-7a61-43a5-8561-624d41c31707
X-Runtime:
- '0.085844'
- '0.081695'
X-XSS-Protection:
- '0'
vary:
@ -202,7 +202,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_3
Connection:
@ -215,11 +215,11 @@ interactions:
uri: http://localhost:3000/api/v1/conversations/5/read
response:
body:
string: '{"id":"5","unread":false,"accounts":[{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":5,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]}],"last_status":{"id":"113998819663031635","created_at":"2025-02-13T21:59:02.614Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"direct","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test_2/statuses/113998819663031635","url":"http://localhost:3000/@mastodonpy_test_2/113998819663031635","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003e\u003cspan
string: '{"id":"5","unread":false,"accounts":[{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":5,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]}],"last_status":{"id":"115033992403523136","created_at":"2025-08-15T17:37:05.103Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"direct","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test_2/statuses/115033992403523136","url":"http://localhost:3000/@mastodonpy_test_2/115033992403523136","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003e\u003cspan
class=\"h-card\" translate=\"no\"\u003e\u003ca href=\"http://localhost:3000/@admin\"
class=\"u-url mention\"\u003e@\u003cspan\u003eadmin\u003c/span\u003e\u003c/a\u003e\u003c/span\u003e
ilu bby ;3\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801391516277","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":2,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"media_attachments":[],"mentions":[{"id":"113998800956287197","username":"admin","url":"http://localhost:3000/@admin","acct":"admin"}],"tags":[],"emojis":[],"card":null,"poll":null}}'
test suite","website":null},"account":{"id":"115033965921234147","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":2,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"media_attachments":[],"mentions":[{"id":"115033965466813222","username":"admin","url":"http://localhost:3000/@admin","acct":"admin"}],"tags":[],"emojis":[],"card":null,"poll":null}}'
headers:
Cache-Control:
- private, no-store
@ -230,14 +230,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"73e89e9f3abc93254d067e3f3f3dfe54"
- W/"4d2d2e38e48f5977a32cda4b1887cd2d"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.08, sql.active_record;dur=2.94, cache_generate.active_support;dur=2.83,
cache_write.active_support;dur=0.12, instantiation.active_record;dur=0.79,
- cache_read.active_support;dur=0.08, sql.active_record;dur=4.84, cache_generate.active_support;dur=3.71,
cache_write.active_support;dur=0.12, instantiation.active_record;dur=3.29,
start_processing.action_controller;dur=0.00, cache_fetch_hit.active_support;dur=0.00,
render.active_model_serializers;dur=19.22, process_action.action_controller;dur=39.20
render.active_model_serializers;dur=19.24, process_action.action_controller;dur=50.91
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -249,11 +249,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.869354Z'
- '2025-08-15T17:40:00.390964Z'
X-Request-Id:
- 6fbfc00d-c019-46b1-8314-2d130547ce56
- 34a1e3bc-5d24-41e4-97fb-6bc0a24801e0
X-Runtime:
- '0.053917'
- '0.072162'
X-XSS-Protection:
- '0'
vary:
@ -267,7 +267,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_3
Connection:
@ -278,17 +278,17 @@ interactions:
uri: http://localhost:3000/api/v1/conversations/
response:
body:
string: '[{"id":"5","unread":false,"accounts":[{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":5,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]}],"last_status":{"id":"113998819663031635","created_at":"2025-02-13T21:59:02.614Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"direct","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test_2/statuses/113998819663031635","url":"http://localhost:3000/@mastodonpy_test_2/113998819663031635","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003e\u003cspan
string: '[{"id":"5","unread":false,"accounts":[{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":5,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]}],"last_status":{"id":"115033992403523136","created_at":"2025-08-15T17:37:05.103Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"direct","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test_2/statuses/115033992403523136","url":"http://localhost:3000/@mastodonpy_test_2/115033992403523136","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003e\u003cspan
class=\"h-card\" translate=\"no\"\u003e\u003ca href=\"http://localhost:3000/@admin\"
class=\"u-url mention\"\u003e@\u003cspan\u003eadmin\u003c/span\u003e\u003c/a\u003e\u003c/span\u003e
ilu bby ;3\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801391516277","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":2,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"media_attachments":[],"mentions":[{"id":"113998800956287197","username":"admin","url":"http://localhost:3000/@admin","acct":"admin"}],"tags":[],"emojis":[],"card":null,"poll":null}},{"id":"2","unread":false,"accounts":[{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":1,"statuses_count":4,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]}],"last_status":{"id":"113998814324184078","created_at":"2025-02-13T21:57:41.150Z","in_reply_to_id":"113998814250739998","in_reply_to_account_id":"113998801242326861","sensitive":false,"spoiler_text":"","visibility":"direct","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test_2/statuses/113998814324184078","url":"http://localhost:3000/@mastodonpy_test_2/113998814324184078","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003e\u003cspan
test suite","website":null},"account":{"id":"115033965921234147","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":2,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"media_attachments":[],"mentions":[{"id":"115033965466813222","username":"admin","url":"http://localhost:3000/@admin","acct":"admin"}],"tags":[],"emojis":[],"card":null,"poll":null}},{"id":"2","unread":false,"accounts":[{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":1,"statuses_count":4,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]}],"last_status":{"id":"115033987089394559","created_at":"2025-08-15T17:35:44.016Z","in_reply_to_id":"115033987016590690","in_reply_to_account_id":"115033965771926537","sensitive":false,"spoiler_text":"","visibility":"direct","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test_2/statuses/115033987089394559","url":"http://localhost:3000/@mastodonpy_test_2/115033987089394559","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003e\u003cspan
class=\"h-card\" translate=\"no\"\u003e\u003ca href=\"http://localhost:3000/@mastodonpy_test\"
class=\"u-url mention\"\u003e@\u003cspan\u003emastodonpy_test\u003c/span\u003e\u003c/a\u003e\u003c/span\u003e
pssssst!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801391516277","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":2,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"media_attachments":[],"mentions":[{"id":"113998801242326861","username":"mastodonpy_test","url":"http://localhost:3000/@mastodonpy_test","acct":"mastodonpy_test"}],"tags":[],"emojis":[],"card":null,"poll":null}}]'
test suite","website":null},"account":{"id":"115033965921234147","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":2,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"media_attachments":[],"mentions":[{"id":"115033965771926537","username":"mastodonpy_test","url":"http://localhost:3000/@mastodonpy_test","acct":"mastodonpy_test"}],"tags":[],"emojis":[],"card":null,"poll":null}}]'
headers:
Cache-Control:
- private, no-store
@ -299,16 +299,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"aed416f21b0dc4aedf00260d7e73e7a7"
- W/"e407ece1f02b43c971f27cd80d2ec4b9"
Link:
- <http://localhost:3000/api/v1/conversations?min_id=113998819663031635>; rel="prev"
- <http://localhost:3000/api/v1/conversations?min_id=115033992403523136>; rel="prev"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.12, sql.active_record;dur=3.40, cache_generate.active_support;dur=2.92,
cache_write.active_support;dur=0.13, instantiation.active_record;dur=0.92,
- cache_read.active_support;dur=0.14, sql.active_record;dur=3.48, cache_generate.active_support;dur=2.86,
cache_write.active_support;dur=0.11, instantiation.active_record;dur=0.93,
start_processing.action_controller;dur=0.00, cache_fetch_hit.active_support;dur=0.01,
render.active_model_serializers;dur=11.93, process_action.action_controller;dur=45.30
render.active_model_serializers;dur=15.62, process_action.action_controller;dur=47.48
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -320,11 +320,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.929556Z'
- '2025-08-15T17:40:00.468463Z'
X-Request-Id:
- cc814f57-b6d4-42ab-92ae-9839118a9cbd
- e07d9ef2-18b6-4382-aa93-db4843c43bb3
X-Runtime:
- '0.059778'
- '0.066662'
X-XSS-Protection:
- '0'
vary:
@ -338,7 +338,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_3
Connection:
@ -348,12 +348,12 @@ interactions:
User-Agent:
- tests/v311
method: DELETE
uri: http://localhost:3000/api/v1/statuses/113998819663031635
uri: http://localhost:3000/api/v1/statuses/115033992403523136
response:
body:
string: '{"id":"113998819663031635","created_at":"2025-02-13T21:59:02.614Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"direct","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test_2/statuses/113998819663031635","url":"http://localhost:3000/@mastodonpy_test_2/113998819663031635","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"text":"@admin
string: '{"id":"115033992403523136","created_at":"2025-08-15T17:37:05.103Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"direct","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test_2/statuses/115033992403523136","url":"http://localhost:3000/@mastodonpy_test_2/115033992403523136","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"text":"@admin
ilu bby ;3","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801391516277","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"media_attachments":[],"mentions":[{"id":"113998800956287197","username":"admin","url":"http://localhost:3000/@admin","acct":"admin"}],"tags":[],"emojis":[],"card":null,"poll":null}'
test suite","website":null},"account":{"id":"115033965921234147","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"media_attachments":[],"mentions":[{"id":"115033965466813222","username":"admin","url":"http://localhost:3000/@admin","acct":"admin"}],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
@ -364,14 +364,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"76f39feadf74fbda8af32ef715956966"
- W/"5281caa169403961c76f064094a24ed4"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.06, sql.active_record;dur=11.38, cache_generate.active_support;dur=7.97,
cache_write.active_support;dur=0.16, instantiation.active_record;dur=0.84,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=3.38,
render.active_model_serializers;dur=25.96, process_action.action_controller;dur=52.89
- cache_read.active_support;dur=0.06, sql.active_record;dur=7.01, cache_generate.active_support;dur=7.96,
cache_write.active_support;dur=0.14, instantiation.active_record;dur=0.65,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=4.50,
render.active_model_serializers;dur=17.68, process_action.action_controller;dur=47.96
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -383,11 +383,11 @@ interactions:
X-RateLimit-Remaining:
- '29'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.071430Z'
- '2025-08-15T18:00:00.635685Z'
X-Request-Id:
- 91cc6cdf-e88e-4dad-a0f4-7b27d8d7c87e
- c354a0ea-37c9-4308-bfa5-742ed7521b30
X-Runtime:
- '0.067422'
- '0.067906'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -20,10 +20,10 @@ interactions:
uri: http://localhost:3000/api/v1/statuses
response:
body:
string: '{"id":"113998806889265621","created_at":"2025-02-13T21:55:47.699Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/113998806889265621","url":"http://localhost:3000/@mastodonpy_test/113998806889265621","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eToot!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":0,"statuses_count":5,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
string: '{"id":"115033976420383096","created_at":"2025-08-15T17:33:01.219Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/115033976420383096","url":"http://localhost:3000/@mastodonpy_test/115033976420383096","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eToot!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":0,"statuses_count":5,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
@ -34,14 +34,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"6c8e963c07308c54161af7359ed97564"
- W/"5cd335d64d8a9bfdad95cdb1e7001bdb"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.05, sql.active_record;dur=9.94, cache_generate.active_support;dur=2.75,
cache_write.active_support;dur=0.13, instantiation.active_record;dur=0.50,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=4.33,
render.active_model_serializers;dur=13.22, process_action.action_controller;dur=47.57
- cache_read.active_support;dur=0.06, sql.active_record;dur=14.07, cache_generate.active_support;dur=2.81,
cache_write.active_support;dur=0.14, instantiation.active_record;dur=0.52,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=5.80,
render.active_model_serializers;dur=15.59, process_action.action_controller;dur=57.32
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -51,13 +51,13 @@ interactions:
X-RateLimit-Limit:
- '300'
X-RateLimit-Remaining:
- '291'
- '290'
X-RateLimit-Reset:
- '2025-02-14T00:00:00.724500Z'
- '2025-08-15T18:00:00.250855Z'
X-Request-Id:
- 1a6df552-3a37-41bd-b324-73cc0b2c2f44
- 32db3497-445d-4fe8-b7b6-7862c99db8f2
X-Runtime:
- '0.062057'
- '0.076948'
X-XSS-Protection:
- '0'
vary:
@ -71,7 +71,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -81,13 +81,13 @@ interactions:
User-Agent:
- tests/v311
method: DELETE
uri: http://localhost:3000/api/v1/statuses/113998806889265621
uri: http://localhost:3000/api/v1/statuses/115033976420383096
response:
body:
string: '{"id":"113998806889265621","created_at":"2025-02-13T21:55:47.699Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/113998806889265621","url":"http://localhost:3000/@mastodonpy_test/113998806889265621","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"text":"Toot!","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":0,"statuses_count":4,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
string: '{"id":"115033976420383096","created_at":"2025-08-15T17:33:01.219Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/115033976420383096","url":"http://localhost:3000/@mastodonpy_test/115033976420383096","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"text":"Toot!","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":0,"statuses_count":3,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
@ -98,14 +98,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"c31a516d78fa4fb402131d671e39cc51"
- W/"77f4860cffbb359be92ec34ef26e5bcb"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.05, sql.active_record;dur=6.11, cache_generate.active_support;dur=2.70,
cache_write.active_support;dur=0.33, instantiation.active_record;dur=0.70,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=3.40,
render.active_model_serializers;dur=13.23, process_action.action_controller;dur=41.63
- cache_read.active_support;dur=0.05, sql.active_record;dur=6.68, cache_generate.active_support;dur=7.05,
cache_write.active_support;dur=0.14, instantiation.active_record;dur=0.69,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=4.18,
render.active_model_serializers;dur=16.82, process_action.action_controller;dur=47.63
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -117,11 +117,11 @@ interactions:
X-RateLimit-Remaining:
- '29'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.789435Z'
- '2025-08-15T18:00:00.327085Z'
X-Request-Id:
- 9adef937-6ba4-4d63-b0a1-a6bce3eb1acd
- ec5f367b-8670-43b6-b382-c2e65505b24b
X-Runtime:
- '0.056473'
- '0.067573'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -16,7 +16,7 @@ interactions:
uri: http://localhost:3000/api/v1/directory
response:
body:
string: '[{"id":"113998801391516277","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]}]'
string: '[{"id":"115033965921234147","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]}]'
headers:
Cache-Control:
- private, no-store
@ -27,14 +27,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"9392b162a9378798a0f2ce4d1e46e7c5"
- W/"8e0decb05d47dc74dc5639ced2cceea3"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.09, sql.active_record;dur=2.24, cache_generate.active_support;dur=4.96,
cache_write.active_support;dur=0.18, instantiation.active_record;dur=0.56,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=2.50,
process_action.action_controller;dur=29.38
- cache_read.active_support;dur=0.07, sql.active_record;dur=2.30, cache_generate.active_support;dur=4.50,
cache_write.active_support;dur=0.17, instantiation.active_record;dur=0.53,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=2.45,
process_action.action_controller;dur=30.88
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -46,11 +46,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.955510Z'
- '2025-08-15T17:35:00.783480Z'
X-Request-Id:
- 1b41bdfb-baa5-425b-9218-b1116aef28e3
- 2a5243b5-944a-40c5-9d4c-7a3b6e09fe19
X-Runtime:
- '0.045820'
- '0.052978'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -35,11 +35,11 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=4.05, cache_generate.active_support;dur=0.91,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.30,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=4.03,
- cache_read.active_support;dur=0.02, sql.active_record;dur=5.19, cache_generate.active_support;dur=0.95,
cache_write.active_support;dur=0.09, instantiation.active_record;dur=0.41,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=5.49,
cache_delete.active_support;dur=0.03, render.active_model_serializers;dur=0.02,
process_action.action_controller;dur=28.00
process_action.action_controller;dur=33.28
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -51,11 +51,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.965628Z'
- '2025-08-15T17:35:00.773297Z'
X-Request-Id:
- ac92ff4c-448c-42a7-8af1-5eddcd11248f
- 69abf41f-21e1-47b9-a59d-5c65978c200f
X-Runtime:
- '0.042986'
- '0.053713'
X-XSS-Protection:
- '0'
vary:
@ -69,7 +69,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -99,11 +99,11 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=3.68, cache_generate.active_support;dur=1.29,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.51,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=2.73,
- cache_read.active_support;dur=0.02, sql.active_record;dur=4.78, cache_generate.active_support;dur=0.99,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=1.84,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=4.07,
cache_delete.active_support;dur=0.03, render.active_model_serializers;dur=0.02,
process_action.action_controller;dur=24.88
process_action.action_controller;dur=31.69
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -115,11 +115,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.013405Z'
- '2025-08-15T17:35:00.833399Z'
X-Request-Id:
- 60b8e806-4ef4-4fa3-9418-5bed1a23ed86
- 78c16cba-006e-416c-b76a-dde069167c81
X-Runtime:
- '0.041201'
- '0.053706'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -31,10 +31,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.81, cache_generate.active_support;dur=0.97,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.26,
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.62, cache_generate.active_support;dur=0.97,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.25,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.04,
process_action.action_controller;dur=26.06
process_action.action_controller;dur=22.66
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -46,11 +46,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.923449Z'
- '2025-08-15T17:35:00.720878Z'
X-Request-Id:
- fe01720a-d1a1-4068-867e-ca03d707bb50
- 936ef96a-4b3d-46ca-b43b-6037d5b045f0
X-Runtime:
- '0.043144'
- '0.045331'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -27,16 +27,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- Thu, 13 Feb 2025 21:55:48 GMT
- Fri, 15 Aug 2025 17:33:02 GMT
ETag:
- W/"4f53cda18c2baa0c0354bb5f9a3ecbe5"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=1.41, cache_generate.active_support;dur=1.02,
cache_write.active_support;dur=0.13, instantiation.active_record;dur=0.25,
start_processing.action_controller;dur=0.01, render.active_model_serializers;dur=0.04,
process_action.action_controller;dur=21.44
- cache_read.active_support;dur=0.07, sql.active_record;dur=1.63, cache_generate.active_support;dur=1.04,
cache_write.active_support;dur=0.12, instantiation.active_record;dur=0.29,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.05,
process_action.action_controller;dur=26.71
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -48,11 +48,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.495549Z'
- '2025-08-15T17:35:00.186565Z'
X-Request-Id:
- 3002d7f2-74de-4444-9c78-06f62b668287
- 87fa2010-70f2-42a4-99d0-58795beb018b
X-Runtime:
- '0.039194'
- '0.049672'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -31,10 +31,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=1.24, cache_generate.active_support;dur=2.42,
cache_write.active_support;dur=0.11, instantiation.active_record;dur=0.27,
start_processing.action_controller;dur=0.01, render.active_model_serializers;dur=0.04,
process_action.action_controller;dur=25.40
- cache_read.active_support;dur=0.05, sql.active_record;dur=1.56, cache_generate.active_support;dur=3.00,
cache_write.active_support;dur=0.12, instantiation.active_record;dur=0.29,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.04,
process_action.action_controller;dur=27.05
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -46,11 +46,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.627445Z'
- '2025-08-15T17:40:00.183380Z'
X-Request-Id:
- 4f1d1d35-4379-4c89-bbc0-e842e180507c
- e5ec781a-e51e-4b03-8b95-9d2399eea9a2
X-Runtime:
- '0.042935'
- '0.049952'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -35,10 +35,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=5.89, cache_generate.active_support;dur=1.80,
cache_write.active_support;dur=0.11, instantiation.active_record;dur=0.33,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=8.58,
render.active_model_serializers;dur=2.64, process_action.action_controller;dur=60.95
- cache_read.active_support;dur=0.04, sql.active_record;dur=5.87, cache_generate.active_support;dur=1.70,
cache_write.active_support;dur=0.09, instantiation.active_record;dur=0.28,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=8.60,
render.active_model_serializers;dur=2.07, process_action.action_controller;dur=122.94
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -50,11 +50,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.317996Z'
- '2025-08-15T17:35:00.257221Z'
X-Request-Id:
- 19e17e1b-f1b3-40ab-9c76-b581eab19f6c
- b7a1b12b-6e9c-4ea5-9372-14d06fd03138
X-Runtime:
- '0.079249'
- '0.144914'
X-XSS-Protection:
- '0'
vary:
@ -68,7 +68,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -98,10 +98,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=4.60, cache_generate.active_support;dur=1.45,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.29,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=8.00,
render.active_model_serializers;dur=0.56, process_action.action_controller;dur=41.83
- cache_read.active_support;dur=0.04, sql.active_record;dur=7.26, cache_generate.active_support;dur=1.35,
cache_write.active_support;dur=0.09, instantiation.active_record;dur=0.22,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=8.86,
render.active_model_serializers;dur=1.26, process_action.action_controller;dur=61.65
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -113,11 +113,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.403909Z'
- '2025-08-15T17:35:00.404250Z'
X-Request-Id:
- 04f760f4-ee0b-4628-9460-59a2666c36a6
- 6c8cb5f4-27a5-4b6e-b142-fb6ab33aa4ea
X-Runtime:
- '0.055960'
- '0.081512'
X-XSS-Protection:
- '0'
vary:
@ -131,7 +131,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -159,10 +159,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.80, cache_generate.active_support;dur=0.90,
cache_write.active_support;dur=0.09, instantiation.active_record;dur=0.48,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.03,
process_action.action_controller;dur=24.10
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.70, cache_generate.active_support;dur=0.92,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.38,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.02,
process_action.action_controller;dur=31.76
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -174,11 +174,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.460760Z'
- '2025-08-15T17:35:00.493970Z'
X-Request-Id:
- b54ed4bb-3dd2-4209-8748-0e5c263481b1
- 936ee57d-8e27-4019-a7cf-cb5fe5670754
X-Runtime:
- '0.042159'
- '0.050344'
X-XSS-Protection:
- '0'
vary:
@ -192,7 +192,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -203,9 +203,9 @@ interactions:
uri: http://localhost:3000/api/v1/accounts/verify_credentials
response:
body:
string: '{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"source":{"privacy":"private","sensitive":false,"language":null,"note":"I
string: '{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"source":{"privacy":"private","sensitive":false,"language":null,"note":"I
walk funny","fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}],"role":{"id":"-99","name":"","permissions":"65536","color":"","highlighted":false}}'
headers:
Cache-Control:
@ -217,14 +217,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"f89be396df1ad6f093537353beea9e72"
- W/"c46fc1233ec9bd9d9b6adca16123ce1c"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.08, sql.active_record;dur=1.00, cache_generate.active_support;dur=1.64,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.32,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.91,
process_action.action_controller;dur=23.40
- cache_read.active_support;dur=0.03, sql.active_record;dur=0.87, cache_generate.active_support;dur=1.37,
cache_write.active_support;dur=0.09, instantiation.active_record;dur=0.28,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=3.96,
process_action.action_controller;dur=24.86
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -236,11 +236,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.503677Z'
- '2025-08-15T17:35:00.552653Z'
X-Request-Id:
- 0ea7aaa3-0ce0-4b5a-a0db-ef6563e9f890
- 11602806-874d-4e5a-abe0-df7426bbfaf8
X-Runtime:
- '0.038744'
- '0.043438'
X-XSS-Protection:
- '0'
vary:
@ -254,7 +254,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -262,7 +262,7 @@ interactions:
User-Agent:
- tests/v311
method: GET
uri: http://localhost:3000/api/v1/accounts/113998801242326861/featured_tags
uri: http://localhost:3000/api/v1/accounts/115033965771926537/featured_tags
response:
body:
string: '[{"id":"2","name":"coolfree","url":"http://localhost:3000/@mastodonpy_test/tagged/coolfree","statuses_count":"0","last_status_at":null}]'
@ -280,10 +280,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.79, cache_generate.active_support;dur=0.89,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.35,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.35,
process_action.action_controller;dur=21.03
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.95, cache_generate.active_support;dur=0.86,
cache_write.active_support;dur=0.11, instantiation.active_record;dur=0.42,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.33,
process_action.action_controller;dur=34.44
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -295,11 +295,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.563590Z'
- '2025-08-15T17:35:00.635623Z'
X-Request-Id:
- edf211a1-9c0a-4efe-9845-c2bdca5d5370
- 424e951c-575b-468b-915b-5d8fe9a95f1f
X-Runtime:
- '0.038123'
- '0.055677'
X-XSS-Protection:
- '0'
vary:
@ -313,7 +313,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -341,10 +341,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.94, cache_generate.active_support;dur=0.88,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.43,
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.78, cache_generate.active_support;dur=0.91,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.42,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.02,
process_action.action_controller;dur=21.89
process_action.action_controller;dur=25.88
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -356,11 +356,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.611023Z'
- '2025-08-15T17:35:00.687118Z'
X-Request-Id:
- 9c45bc34-fcd9-4b79-8442-779909ca9ee2
- 7f9f151c-47b4-4c22-8500-1090eeac94d8
X-Runtime:
- '0.044107'
- '0.045319'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -16,9 +16,9 @@ interactions:
uri: http://localhost:3000/api/v1/accounts/verify_credentials
response:
body:
string: '{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"source":{"privacy":"private","sensitive":false,"language":null,"note":"I
string: '{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"source":{"privacy":"private","sensitive":false,"language":null,"note":"I
walk funny","fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}],"role":{"id":"-99","name":"","permissions":"65536","color":"","highlighted":false}}'
headers:
Cache-Control:
@ -30,14 +30,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"f89be396df1ad6f093537353beea9e72"
- W/"c46fc1233ec9bd9d9b6adca16123ce1c"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=1.21, cache_generate.active_support;dur=1.66,
cache_write.active_support;dur=0.11, instantiation.active_record;dur=0.38,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.58,
process_action.action_controller;dur=23.49
- cache_read.active_support;dur=0.03, sql.active_record;dur=0.94, cache_generate.active_support;dur=1.41,
cache_write.active_support;dur=0.09, instantiation.active_record;dur=0.27,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.09,
process_action.action_controller;dur=24.72
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -49,11 +49,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.069264Z'
- '2025-08-15T17:35:00.266865Z'
X-Request-Id:
- e4e36e12-0301-414a-a243-bd8400880115
- 828e0ed4-5edc-47a3-8a98-de83782b6109
X-Runtime:
- '0.038787'
- '0.043354'
X-XSS-Protection:
- '0'
vary:
@ -67,7 +67,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -79,10 +79,10 @@ interactions:
User-Agent:
- tests/v311
method: POST
uri: http://localhost:3000/api/v1/accounts/113998801242326861/follow
uri: http://localhost:3000/api/v1/accounts/115033965771926537/follow
response:
body:
string: '{"id":"113998801242326861","following":false,"showing_reblogs":true,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":true,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":""}'
string: '{"id":"115033965771926537","following":false,"showing_reblogs":true,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":true,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":""}'
headers:
Cache-Control:
- private, no-store
@ -93,16 +93,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"198fc30afb2712631dd3894a4f5bdb55"
- W/"8842bab00e906f2131c106a790cc72a8"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.03, sql.active_record;dur=6.03, cache_generate.active_support;dur=1.01,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.53,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=5.80,
cache_delete.active_support;dur=0.03, cache_read_multi.active_support;dur=0.04,
cache_write_multi.active_support;dur=0.08, render.active_model_serializers;dur=0.17,
process_action.action_controller;dur=50.56
- cache_read.active_support;dur=0.02, sql.active_record;dur=7.37, cache_generate.active_support;dur=1.01,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.47,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=7.34,
cache_delete.active_support;dur=0.03, cache_read_multi.active_support;dur=0.05,
cache_write_multi.active_support;dur=0.06, render.active_model_serializers;dur=0.15,
process_action.action_controller;dur=48.25
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -114,11 +114,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.127465Z'
- '2025-08-15T17:35:00.333087Z'
X-Request-Id:
- b7876b93-6742-4e86-9e48-e05f3f2f6b2e
- 92f6efa3-910d-4462-b8e3-8163b9c32913
X-Runtime:
- '0.065659'
- '0.067651'
X-XSS-Protection:
- '0'
vary:
@ -132,7 +132,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -143,7 +143,7 @@ interactions:
uri: http://localhost:3000/api/v1/follow_requests
response:
body:
string: '[{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]}]'
string: '[{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]}]'
headers:
Cache-Control:
- private, no-store
@ -154,16 +154,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"1a00e2c2f96ab96be9b7bb8ebc570ff6"
- W/"b50853996b34689d6d0741944186cf23"
Link:
- <http://localhost:3000/api/v1/follow_requests?since_id=1>; rel="prev"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.05, sql.active_record;dur=1.74, cache_generate.active_support;dur=3.23,
cache_write.active_support;dur=0.11, instantiation.active_record;dur=2.45,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=2.67,
process_action.action_controller;dur=26.48
- cache_read.active_support;dur=0.05, sql.active_record;dur=1.79, cache_generate.active_support;dur=1.98,
cache_write.active_support;dur=0.11, instantiation.active_record;dur=2.09,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=10.96,
process_action.action_controller;dur=37.41
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -175,11 +175,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.204752Z'
- '2025-08-15T17:35:00.410758Z'
X-Request-Id:
- 1eef631d-df6b-4155-ad70-630c6d309cb0
- 2f84394c-16a0-49a1-976a-ca7c723a9b6c
X-Runtime:
- '0.043922'
- '0.056870'
X-XSS-Protection:
- '0'
vary:
@ -193,7 +193,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -203,10 +203,10 @@ interactions:
User-Agent:
- tests/v311
method: POST
uri: http://localhost:3000/api/v1/follow_requests/113998800956287197/authorize
uri: http://localhost:3000/api/v1/follow_requests/115033965466813222/authorize
response:
body:
string: '{"id":"113998800956287197","following":false,"showing_reblogs":false,"notifying":false,"languages":null,"followed_by":true,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":"top
string: '{"id":"115033965466813222","following":false,"showing_reblogs":false,"notifying":false,"languages":null,"followed_by":true,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":"top
ebayer gerne wieder"}'
headers:
Cache-Control:
@ -218,16 +218,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"5c9052de2a4985d3c18d9e58f9ae8b43"
- W/"3f8d36f866881a231e7147f3abb46b50"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=11.85, cache_generate.active_support;dur=0.94,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=2.92,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=9.68,
cache_delete.active_support;dur=0.07, cache_read_multi.active_support;dur=0.04,
cache_write_multi.active_support;dur=0.07, render.active_model_serializers;dur=0.31,
process_action.action_controller;dur=59.94
- cache_read.active_support;dur=0.02, sql.active_record;dur=13.25, cache_generate.active_support;dur=1.00,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.63,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=12.61,
cache_delete.active_support;dur=0.06, cache_read_multi.active_support;dur=0.04,
cache_write_multi.active_support;dur=0.07, render.active_model_serializers;dur=0.16,
process_action.action_controller;dur=56.70
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -239,11 +239,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.264306Z'
- '2025-08-15T17:35:00.490656Z'
X-Request-Id:
- a6b371f9-b0a8-4025-9cb9-39a3eff83abc
- ad850c73-c300-4e35-96e2-757aeda9b8d1
X-Runtime:
- '0.075179'
- '0.078867'
X-XSS-Protection:
- '0'
vary:
@ -257,7 +257,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -267,10 +267,10 @@ interactions:
User-Agent:
- tests/v311
method: POST
uri: http://localhost:3000/api/v1/accounts/113998801242326861/unfollow
uri: http://localhost:3000/api/v1/accounts/115033965771926537/unfollow
response:
body:
string: '{"id":"113998801242326861","following":false,"showing_reblogs":false,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":""}'
string: '{"id":"115033965771926537","following":false,"showing_reblogs":false,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":""}'
headers:
Cache-Control:
- private, no-store
@ -281,16 +281,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"00115ab434f0e772e383b2ee37b1527d"
- W/"8e2cab3e00fb1a64fff4151237f5f53f"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=4.65, cache_generate.active_support;dur=0.97,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.58,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=6.14,
cache_delete.active_support;dur=0.03, cache_read_multi.active_support;dur=0.04,
cache_write_multi.active_support;dur=0.06, render.active_model_serializers;dur=0.16,
process_action.action_controller;dur=33.56
- cache_read.active_support;dur=0.02, sql.active_record;dur=6.98, cache_generate.active_support;dur=1.04,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.49,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=8.32,
cache_delete.active_support;dur=0.03, cache_read_multi.active_support;dur=0.03,
cache_write_multi.active_support;dur=0.06, render.active_model_serializers;dur=0.15,
process_action.action_controller;dur=38.56
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -302,11 +302,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.345962Z'
- '2025-08-15T17:35:00.578903Z'
X-Request-Id:
- 83f6a985-8fe0-4626-a75b-60b80ccd72de
- d6d565a0-b13f-4846-b112-d4d8e04dde34
X-Runtime:
- '0.048642'
- '0.058011'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -16,9 +16,9 @@ interactions:
uri: http://localhost:3000/api/v1/accounts/verify_credentials
response:
body:
string: '{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"source":{"privacy":"private","sensitive":false,"language":null,"note":"I
string: '{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"source":{"privacy":"private","sensitive":false,"language":null,"note":"I
walk funny","fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}],"role":{"id":"-99","name":"","permissions":"65536","color":"","highlighted":false}}'
headers:
Cache-Control:
@ -30,14 +30,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"f89be396df1ad6f093537353beea9e72"
- W/"c46fc1233ec9bd9d9b6adca16123ce1c"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=1.11, cache_generate.active_support;dur=1.75,
cache_write.active_support;dur=0.11, instantiation.active_record;dur=0.34,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=5.09,
process_action.action_controller;dur=23.51
- cache_read.active_support;dur=0.04, sql.active_record;dur=1.18, cache_generate.active_support;dur=1.63,
cache_write.active_support;dur=0.11, instantiation.active_record;dur=0.39,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=5.06,
process_action.action_controller;dur=26.76
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -49,11 +49,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.408033Z'
- '2025-08-15T17:35:00.667178Z'
X-Request-Id:
- f2569bcb-8362-44d3-969f-998b64e8635d
- 5c202d87-e9d6-49f7-81df-0503638c7eca
X-Runtime:
- '0.040784'
- '0.046658'
X-XSS-Protection:
- '0'
vary:
@ -67,7 +67,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -79,10 +79,10 @@ interactions:
User-Agent:
- tests/v311
method: POST
uri: http://localhost:3000/api/v1/accounts/113998801242326861/follow
uri: http://localhost:3000/api/v1/accounts/115033965771926537/follow
response:
body:
string: '{"id":"113998801242326861","following":false,"showing_reblogs":true,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":true,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":""}'
string: '{"id":"115033965771926537","following":false,"showing_reblogs":true,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":true,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":""}'
headers:
Cache-Control:
- private, no-store
@ -93,16 +93,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"198fc30afb2712631dd3894a4f5bdb55"
- W/"8842bab00e906f2131c106a790cc72a8"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.03, sql.active_record;dur=5.69, cache_generate.active_support;dur=1.03,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.79,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=5.22,
cache_delete.active_support;dur=0.03, cache_read_multi.active_support;dur=0.03,
cache_write_multi.active_support;dur=0.06, render.active_model_serializers;dur=0.16,
process_action.action_controller;dur=39.21
- cache_read.active_support;dur=0.02, sql.active_record;dur=7.11, cache_generate.active_support;dur=0.98,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.59,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=6.47,
cache_delete.active_support;dur=0.05, cache_read_multi.active_support;dur=0.04,
cache_write_multi.active_support;dur=0.06, render.active_model_serializers;dur=0.15,
process_action.action_controller;dur=49.13
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -114,11 +114,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.467813Z'
- '2025-08-15T17:35:00.736397Z'
X-Request-Id:
- f5cec254-3a22-4376-a057-0f4b4900c9ee
- 707f4ba0-bf4c-4799-809a-ca66a13fb89c
X-Runtime:
- '0.055214'
- '0.068849'
X-XSS-Protection:
- '0'
vary:
@ -132,7 +132,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -143,7 +143,7 @@ interactions:
uri: http://localhost:3000/api/v1/follow_requests
response:
body:
string: '[{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]}]'
string: '[{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]}]'
headers:
Cache-Control:
- private, no-store
@ -154,16 +154,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"1a00e2c2f96ab96be9b7bb8ebc570ff6"
- W/"b50853996b34689d6d0741944186cf23"
Link:
- <http://localhost:3000/api/v1/follow_requests?since_id=2>; rel="prev"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=1.91, cache_generate.active_support;dur=1.82,
cache_write.active_support;dur=2.66, instantiation.active_record;dur=0.62,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=2.61,
process_action.action_controller;dur=28.14
- cache_read.active_support;dur=0.04, sql.active_record;dur=1.58, cache_generate.active_support;dur=1.45,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.47,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=2.40,
process_action.action_controller;dur=26.74
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -175,11 +175,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.534426Z'
- '2025-08-15T17:35:00.814016Z'
X-Request-Id:
- e04bdc53-6a58-4d36-b42c-b69ea83c12cf
- 21646e28-b201-4c43-9d07-28c4a41ea318
X-Runtime:
- '0.046639'
- '0.046113'
X-XSS-Protection:
- '0'
vary:
@ -193,7 +193,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -203,10 +203,10 @@ interactions:
User-Agent:
- tests/v311
method: POST
uri: http://localhost:3000/api/v1/follow_requests/113998800956287197/reject
uri: http://localhost:3000/api/v1/follow_requests/115033965466813222/reject
response:
body:
string: '{"id":"113998800956287197","following":false,"showing_reblogs":false,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":"top
string: '{"id":"115033965466813222","following":false,"showing_reblogs":false,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":"top
ebayer gerne wieder"}'
headers:
Cache-Control:
@ -218,16 +218,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"980c7f806d79f9d809d65077d0616e26"
- W/"93a7ec1562e4d70121d96e3171b6fe44"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=4.69, cache_generate.active_support;dur=0.96,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.58,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=4.67,
cache_delete.active_support;dur=0.04, cache_read_multi.active_support;dur=0.03,
cache_write_multi.active_support;dur=0.07, render.active_model_serializers;dur=0.17,
process_action.action_controller;dur=37.46
- cache_read.active_support;dur=0.02, sql.active_record;dur=7.24, cache_generate.active_support;dur=0.93,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.45,
start_processing.action_controller;dur=0.02, transaction.active_record;dur=7.26,
cache_delete.active_support;dur=0.03, cache_read_multi.active_support;dur=0.03,
cache_write_multi.active_support;dur=0.07, render.active_model_serializers;dur=0.18,
process_action.action_controller;dur=36.14
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -239,11 +239,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.595002Z'
- '2025-08-15T17:35:00.879032Z'
X-Request-Id:
- ebca3252-8418-45f0-9514-bedc89897400
- 7f0f5862-72de-4da3-936a-efb42a2abc18
X-Runtime:
- '0.052694'
- '0.055294'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -31,10 +31,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.03, sql.active_record;dur=1.15, cache_generate.active_support;dur=1.07,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.24,
start_processing.action_controller;dur=0.01, render.active_model_serializers;dur=0.04,
process_action.action_controller;dur=20.71
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.84, cache_generate.active_support;dur=0.86,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.17,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.05,
process_action.action_controller;dur=21.86
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -46,11 +46,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.024623Z'
- '2025-08-15T17:35:00.216837Z'
X-Request-Id:
- c1269712-81fa-4e3c-916f-ace19228ba63
- 2184ed6b-b789-4156-95ae-c357e9f8f090
X-Runtime:
- '0.046916'
- '0.042298'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -31,10 +31,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.07, sql.active_record;dur=7.08, cache_generate.active_support;dur=20.55,
cache_write.active_support;dur=0.17, instantiation.active_record;dur=0.25,
start_processing.action_controller;dur=0.01, render.active_model_serializers;dur=0.03,
process_action.action_controller;dur=39.29
- cache_read.active_support;dur=0.06, sql.active_record;dur=7.26, cache_generate.active_support;dur=21.22,
cache_write.active_support;dur=0.16, instantiation.active_record;dur=0.23,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.04,
process_action.action_controller;dur=42.22
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -46,11 +46,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T21:55:00.337644Z'
- '2025-08-15T17:35:00.112208Z'
X-Request-Id:
- 9713f857-299f-4584-8117-27e87f411cab
- 8d032ba0-0b3b-4135-9d63-fbd80bf1169c
X-Runtime:
- '0.071555'
- '0.064445'
X-XSS-Protection:
- '0'
vary:
@ -64,7 +64,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -90,10 +90,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.07, sql.active_record;dur=4.00, cache_generate.active_support;dur=12.29,
- cache_read.active_support;dur=0.06, sql.active_record;dur=7.54, cache_generate.active_support;dur=47.41,
cache_write.active_support;dur=0.17, instantiation.active_record;dur=0.22,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.04,
process_action.action_controller;dur=27.09
process_action.action_controller;dur=53.06
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -105,11 +105,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T21:55:00.401578Z'
- '2025-08-15T17:35:00.180594Z'
X-Request-Id:
- 88c25f9c-20e5-443a-9b2d-540e4685b68a
- 69f4e819-1331-4a2b-9cb6-d0d211aa43d5
X-Runtime:
- '0.044922'
- '0.075810'
X-XSS-Protection:
- '0'
vary:
@ -123,7 +123,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -149,10 +149,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.07, sql.active_record;dur=4.29, cache_generate.active_support;dur=13.30,
cache_write.active_support;dur=0.17, instantiation.active_record;dur=0.23,
- cache_read.active_support;dur=0.06, sql.active_record;dur=4.34, cache_generate.active_support;dur=12.11,
cache_write.active_support;dur=0.16, instantiation.active_record;dur=0.23,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.04,
process_action.action_controller;dur=28.97
process_action.action_controller;dur=29.96
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -164,11 +164,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T21:55:00.449918Z'
- '2025-08-15T17:35:00.263913Z'
X-Request-Id:
- 558b731d-3fb8-473a-9049-79371cd48927
- 076af2ff-4247-4805-97e7-f4596d56c77f
X-Runtime:
- '0.046130'
- '0.052025'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -16,7 +16,7 @@ interactions:
uri: http://localhost:3000/api/v1/accounts/verify_credentials
response:
body:
string: '{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":null,"hide_collections":null,"noindex":false,"source":{"privacy":"public","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[],"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}'
string: '{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":null,"hide_collections":null,"noindex":false,"source":{"privacy":"public","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[],"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}'
headers:
Cache-Control:
- private, no-store
@ -27,14 +27,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"6521289dad4f8e47d25b9253ee8b0e90"
- W/"ff57a4652fc51bf91f85caf39b38ae48"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=1.22, cache_generate.active_support;dur=1.62,
cache_write.active_support;dur=0.13, instantiation.active_record;dur=0.34,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=3.89,
process_action.action_controller;dur=22.44
- cache_read.active_support;dur=0.03, sql.active_record;dur=0.98, cache_generate.active_support;dur=1.42,
cache_write.active_support;dur=0.09, instantiation.active_record;dur=0.27,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=3.84,
process_action.action_controller;dur=24.44
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -46,11 +46,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.119362Z'
- '2025-08-15T17:35:00.296531Z'
X-Request-Id:
- 6086c179-bc57-4e95-82a7-649e6e9c1683
- 93495743-893a-47cf-b1f8-dce9852b980c
X-Runtime:
- '0.037996'
- '0.043345'
X-XSS-Protection:
- '0'
vary:
@ -64,7 +64,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -76,10 +76,10 @@ interactions:
User-Agent:
- tests/v311
method: POST
uri: http://localhost:3000/api/v1/accounts/113998800956287197/follow
uri: http://localhost:3000/api/v1/accounts/115033965466813222/follow
response:
body:
string: '{"id":"113998800956287197","following":true,"showing_reblogs":false,"notifying":true,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":"top
string: '{"id":"115033965466813222","following":true,"showing_reblogs":false,"notifying":true,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":"top
ebayer gerne wieder"}'
headers:
Cache-Control:
@ -91,16 +91,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"0b2df2f4349814e47cee52263321deea"
- W/"58218114e6ccf22a2d9801104d6bad1e"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.03, sql.active_record;dur=5.67, cache_generate.active_support;dur=0.95,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.44,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=6.34,
cache_delete.active_support;dur=0.04, cache_read_multi.active_support;dur=0.04,
cache_write_multi.active_support;dur=0.06, render.active_model_serializers;dur=0.16,
process_action.action_controller;dur=36.35
- cache_read.active_support;dur=0.02, sql.active_record;dur=7.07, cache_generate.active_support;dur=1.09,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.52,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=7.82,
cache_delete.active_support;dur=0.03, cache_read_multi.active_support;dur=0.04,
cache_write_multi.active_support;dur=0.06, render.active_model_serializers;dur=0.15,
process_action.action_controller;dur=41.15
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -112,11 +112,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.189880Z'
- '2025-08-15T17:35:00.361738Z'
X-Request-Id:
- ce5840d8-f6fd-4626-9c19-b063c56a53e8
- e0697210-e3b2-47f8-96b0-8b9e3348e014
X-Runtime:
- '0.052133'
- '0.060782'
X-XSS-Protection:
- '0'
vary:
@ -130,7 +130,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_3
Connection:
@ -145,9 +145,9 @@ interactions:
uri: http://localhost:3000/api/v1/statuses
response:
body:
string: '{"id":"113998803912461530","created_at":"2025-02-13T21:55:02.277Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test_2/statuses/113998803912461530","url":"http://localhost:3000/@mastodonpy_test_2/113998803912461530","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003erootin
string: '{"id":"115033972503646475","created_at":"2025-08-15T17:32:01.459Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test_2/statuses/115033972503646475","url":"http://localhost:3000/@mastodonpy_test_2/115033972503646475","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003erootin
tooting and shootin\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801391516277","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
test suite","website":null},"account":{"id":"115033965921234147","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
@ -158,14 +158,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"60d2ac607ffdf9e0cca1072f7ec843e9"
- W/"219dcd56058ef1397e9f500d0aa70ab9"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.05, sql.active_record;dur=17.40, cache_generate.active_support;dur=2.59,
cache_write.active_support;dur=0.13, instantiation.active_record;dur=0.44,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=13.68,
render.active_model_serializers;dur=9.95, process_action.action_controller;dur=56.28
- cache_read.active_support;dur=0.05, sql.active_record;dur=24.41, cache_generate.active_support;dur=2.79,
cache_write.active_support;dur=0.12, instantiation.active_record;dur=0.47,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=22.12,
render.active_model_serializers;dur=10.66, process_action.action_controller;dur=71.82
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -177,11 +177,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-14T00:00:00.299061Z'
- '2025-08-15T18:00:00.486787Z'
X-Request-Id:
- 021dc360-0107-47e7-aceb-ff328b090297
- c14b68e2-7dfd-4c58-b485-0519024f44af
X-Runtime:
- '0.076836'
- '0.091315'
X-XSS-Protection:
- '0'
vary:
@ -195,7 +195,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -210,9 +210,9 @@ interactions:
uri: http://localhost:3000/api/v1/statuses
response:
body:
string: '{"id":"113998803988190472","created_at":"2025-02-13T21:55:03.438Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"en","uri":"http://localhost:3000/users/admin/statuses/113998803988190472","url":"http://localhost:3000/@admin/113998803988190472","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003ehorses
string: '{"id":"115033972576535461","created_at":"2025-08-15T17:32:02.567Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"en","uri":"http://localhost:3000/users/admin/statuses/115033972576535461","url":"http://localhost:3000/@admin/115033972576535461","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003ehorses
are not real\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":1,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
test suite","website":null},"account":{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
@ -223,14 +223,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"402c375501c23b7b6ecd544e64a15090"
- W/"1079520df756baafcabf9e0576dbd91a"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.06, sql.active_record;dur=35.30, cache_generate.active_support;dur=10.50,
cache_write.active_support;dur=0.13, instantiation.active_record;dur=4.32,
start_processing.action_controller;dur=0.01, transaction.active_record;dur=17.25,
render.active_model_serializers;dur=49.04, process_action.action_controller;dur=161.54
- cache_read.active_support;dur=0.10, sql.active_record;dur=14.72, cache_generate.active_support;dur=2.77,
cache_write.active_support;dur=0.15, instantiation.active_record;dur=0.41,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=5.80,
render.active_model_serializers;dur=9.67, process_action.action_controller;dur=51.01
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -242,11 +242,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-14T00:00:00.519955Z'
- '2025-08-15T18:00:00.593389Z'
X-Request-Id:
- 1782b2b8-9f0b-483e-8e43-20ab189f2abc
- 4eced2bc-6dea-4ec0-85c1-d159339aa585
X-Runtime:
- '0.189523'
- '0.070226'
X-XSS-Protection:
- '0'
vary:
@ -260,7 +260,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -270,12 +270,12 @@ interactions:
User-Agent:
- tests/v311
method: POST
uri: http://localhost:3000/api/v1/statuses/113998803912461530/reblog
uri: http://localhost:3000/api/v1/statuses/115033972503646475/reblog
response:
body:
string: '{"id":"113998803998705413","created_at":"2025-02-13T21:55:03.595Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":null,"uri":"http://localhost:3000/users/admin/statuses/113998803998705413/activity","url":"http://localhost:3000/users/admin/statuses/113998803998705413/activity","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":true,"muted":false,"bookmarked":false,"content":"","filtered":[],"reblog":{"id":"113998803912461530","created_at":"2025-02-13T21:55:02.277Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test_2/statuses/113998803912461530","url":"http://localhost:3000/@mastodonpy_test_2/113998803912461530","replies_count":0,"reblogs_count":1,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":true,"muted":false,"bookmarked":false,"content":"\u003cp\u003erootin
string: '{"id":"115033972583870047","created_at":"2025-08-15T17:32:02.679Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":null,"uri":"http://localhost:3000/users/admin/statuses/115033972583870047/activity","url":"http://localhost:3000/users/admin/statuses/115033972583870047/activity","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":true,"muted":false,"bookmarked":false,"content":"","filtered":[],"reblog":{"id":"115033972503646475","created_at":"2025-08-15T17:32:01.459Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test_2/statuses/115033972503646475","url":"http://localhost:3000/@mastodonpy_test_2/115033972503646475","replies_count":0,"reblogs_count":1,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":true,"muted":false,"bookmarked":false,"content":"\u003cp\u003erootin
tooting and shootin\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801391516277","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null},"application":null,"account":{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":2,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
test suite","website":null},"account":{"id":"115033965921234147","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null},"application":null,"account":{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":2,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
@ -286,15 +286,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"debaa67021da72a51769452ae63e43fb"
- W/"dbce6d0e4adbef800e1aa286a13d00cf"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.12, sql.active_record;dur=15.27, cache_generate.active_support;dur=3.05,
cache_write.active_support;dur=0.14, instantiation.active_record;dur=0.74,
- cache_read.active_support;dur=0.10, sql.active_record;dur=19.89, cache_generate.active_support;dur=2.95,
cache_write.active_support;dur=0.13, instantiation.active_record;dur=0.72,
start_processing.action_controller;dur=0.00, unpermitted_parameters.action_controller;dur=0.00,
transaction.active_record;dur=8.06, cache_fetch_hit.active_support;dur=0.00,
render.active_model_serializers;dur=24.51, process_action.action_controller;dur=69.76
transaction.active_record;dur=10.59, cache_fetch_hit.active_support;dur=0.00,
render.active_model_serializers;dur=21.44, process_action.action_controller;dur=74.60
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -306,11 +306,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-14T00:00:00.637841Z'
- '2025-08-15T18:00:00.724581Z'
X-Request-Id:
- 618c8419-4632-4f9f-8d73-70a1311d3129
- 33d701ee-3344-4aa2-b254-c4456361d004
X-Runtime:
- '0.088066'
- '0.097292'
X-XSS-Protection:
- '0'
vary:
@ -324,7 +324,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -335,9 +335,9 @@ interactions:
uri: http://localhost:3000/api/v1/notifications
response:
body:
string: '[{"id":"10","type":"status","created_at":"2025-02-13T21:55:04.302Z","group_key":"ungrouped-10","account":{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":2,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"status":{"id":"113998803988190472","created_at":"2025-02-13T21:55:03.438Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"en","uri":"http://localhost:3000/users/admin/statuses/113998803988190472","url":"http://localhost:3000/@admin/113998803988190472","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003ehorses
string: '[{"id":"11","type":"status","created_at":"2025-08-15T17:32:03.456Z","group_key":"ungrouped-11","account":{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":2,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"status":{"id":"115033972576535461","created_at":"2025-08-15T17:32:02.567Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"en","uri":"http://localhost:3000/users/admin/statuses/115033972576535461","url":"http://localhost:3000/@admin/115033972576535461","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003ehorses
are not real\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":2,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}}]'
test suite","website":null},"account":{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":2,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}}]'
headers:
Cache-Control:
- private, no-store
@ -348,17 +348,17 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"b6f5bdfea88b748085715d11f6eacaec"
- W/"6d8af94347e4cce4013e260eecdc09e1"
Link:
- <http://localhost:3000/api/v1/notifications?max_id=10>; rel="next", <http://localhost:3000/api/v1/notifications?min_id=10>;
- <http://localhost:3000/api/v1/notifications?max_id=11>; rel="next", <http://localhost:3000/api/v1/notifications?min_id=11>;
rel="prev"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.10, sql.active_record;dur=3.24, cache_generate.active_support;dur=2.96,
cache_write.active_support;dur=0.15, instantiation.active_record;dur=4.29,
start_processing.action_controller;dur=0.01, cache_fetch_hit.active_support;dur=0.00,
render.active_model_serializers;dur=4.72, process_action.action_controller;dur=48.69
- cache_read.active_support;dur=0.08, sql.active_record;dur=3.05, cache_generate.active_support;dur=2.76,
cache_write.active_support;dur=0.16, instantiation.active_record;dur=1.36,
start_processing.action_controller;dur=0.00, cache_fetch_hit.active_support;dur=0.00,
render.active_model_serializers;dur=4.70, process_action.action_controller;dur=61.44
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -370,11 +370,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.738611Z'
- '2025-08-15T17:35:00.834509Z'
X-Request-Id:
- b66a030b-6557-43b9-ae08-3333a9a8fa8f
- 919aad40-b011-4b4c-9e25-38124d5ca629
X-Runtime:
- '0.068741'
- '0.083476'
X-XSS-Protection:
- '0'
vary:
@ -388,7 +388,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -399,9 +399,9 @@ interactions:
uri: http://localhost:3000/api/v1/timelines/home?local=1
response:
body:
string: '[{"id":"113998803988190472","created_at":"2025-02-13T21:55:03.438Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"en","uri":"http://localhost:3000/users/admin/statuses/113998803988190472","url":"http://localhost:3000/@admin/113998803988190472","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003ehorses
string: '[{"id":"115033972576535461","created_at":"2025-08-15T17:32:02.567Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"en","uri":"http://localhost:3000/users/admin/statuses/115033972576535461","url":"http://localhost:3000/@admin/115033972576535461","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003ehorses
are not real\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":2,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}]'
test suite","website":null},"account":{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":2,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}]'
headers:
Cache-Control:
- private, no-store
@ -412,18 +412,18 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"3c11b10215a1b41f082d1f9dbf96cb32"
- W/"7d970183bcbaf2be70c5d53169b916ea"
Link:
- <http://localhost:3000/api/v1/timelines/home?local=1&max_id=113998803988190472>;
rel="next", <http://localhost:3000/api/v1/timelines/home?local=1&min_id=113998803988190472>;
- <http://localhost:3000/api/v1/timelines/home?local=1&max_id=115033972576535461>;
rel="next", <http://localhost:3000/api/v1/timelines/home?local=1&min_id=115033972576535461>;
rel="prev"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.06, sql.active_record;dur=2.85, cache_generate.active_support;dur=3.20,
cache_write.active_support;dur=0.15, instantiation.active_record;dur=0.59,
start_processing.action_controller;dur=0.01, render.active_model_serializers;dur=3.78,
process_action.action_controller;dur=38.23
- cache_read.active_support;dur=0.05, sql.active_record;dur=2.48, cache_generate.active_support;dur=2.72,
cache_write.active_support;dur=0.11, instantiation.active_record;dur=0.50,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=3.62,
process_action.action_controller;dur=37.91
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -435,11 +435,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.857803Z'
- '2025-08-15T17:35:00.989227Z'
X-Request-Id:
- 1eae4d6f-5a92-4fde-80fd-5dfc498a3509
- 28915b5c-d6ec-490c-9f54-382a6d9f6ada
X-Runtime:
- '0.064717'
- '0.066044'
X-XSS-Protection:
- '0'
vary:
@ -453,7 +453,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -463,10 +463,10 @@ interactions:
User-Agent:
- tests/v311
method: POST
uri: http://localhost:3000/api/v1/accounts/113998800956287197/unfollow
uri: http://localhost:3000/api/v1/accounts/115033965466813222/unfollow
response:
body:
string: '{"id":"113998800956287197","following":false,"showing_reblogs":false,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":"top
string: '{"id":"115033965466813222","following":false,"showing_reblogs":false,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":"top
ebayer gerne wieder"}'
headers:
Cache-Control:
@ -478,16 +478,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"980c7f806d79f9d809d65077d0616e26"
- W/"93a7ec1562e4d70121d96e3171b6fe44"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.03, sql.active_record;dur=6.16, cache_generate.active_support;dur=1.00,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=1.01,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=12.47,
cache_delete.active_support;dur=0.03, cache_read_multi.active_support;dur=0.04,
cache_write_multi.active_support;dur=0.08, render.active_model_serializers;dur=0.18,
process_action.action_controller;dur=39.66
- cache_read.active_support;dur=0.02, sql.active_record;dur=7.34, cache_generate.active_support;dur=0.85,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=4.12,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=8.91,
cache_delete.active_support;dur=0.04, cache_read_multi.active_support;dur=0.03,
cache_write_multi.active_support;dur=0.05, render.active_model_serializers;dur=0.16,
process_action.action_controller;dur=41.06
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -499,11 +499,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.941637Z'
- '2025-08-15T17:35:00.085655Z'
X-Request-Id:
- a487a1d0-6587-4523-b07c-4816b5a4d856
- 1d8a4c1a-5f6d-45d7-8180-441b5f36dadc
X-Runtime:
- '0.055273'
- '0.060087'
X-XSS-Protection:
- '0'
vary:
@ -517,7 +517,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_3
Connection:
@ -527,12 +527,12 @@ interactions:
User-Agent:
- tests/v311
method: DELETE
uri: http://localhost:3000/api/v1/statuses/113998803912461530
uri: http://localhost:3000/api/v1/statuses/115033972503646475
response:
body:
string: '{"id":"113998803912461530","created_at":"2025-02-13T21:55:02.277Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test_2/statuses/113998803912461530","url":"http://localhost:3000/@mastodonpy_test_2/113998803912461530","replies_count":0,"reblogs_count":1,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"text":"rootin
string: '{"id":"115033972503646475","created_at":"2025-08-15T17:32:01.459Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test_2/statuses/115033972503646475","url":"http://localhost:3000/@mastodonpy_test_2/115033972503646475","replies_count":0,"reblogs_count":1,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"text":"rootin
tooting and shootin","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801391516277","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
test suite","website":null},"account":{"id":"115033965921234147","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
@ -543,14 +543,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"5974b95ee1ab5784830ed8cd21059dba"
- W/"1581a1fb2b6a7ed9640d51efaeebbfbe"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.07, sql.active_record;dur=10.33, cache_generate.active_support;dur=3.76,
cache_write.active_support;dur=0.19, instantiation.active_record;dur=1.03,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=3.53,
render.active_model_serializers;dur=17.25, process_action.action_controller;dur=52.25
- cache_read.active_support;dur=0.05, sql.active_record;dur=11.48, cache_generate.active_support;dur=2.79,
cache_write.active_support;dur=0.12, instantiation.active_record;dur=0.65,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=4.15,
render.active_model_serializers;dur=13.79, process_action.action_controller;dur=49.55
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -562,11 +562,11 @@ interactions:
X-RateLimit-Remaining:
- '29'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.007495Z'
- '2025-08-15T18:00:00.157694Z'
X-Request-Id:
- a8f0f020-ea6f-44fe-809a-2729163b051c
- 70542de5-9c43-473b-a99e-3f7d798dfa83
X-Runtime:
- '0.069684'
- '0.068033'
X-XSS-Protection:
- '0'
vary:
@ -580,7 +580,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -590,12 +590,12 @@ interactions:
User-Agent:
- tests/v311
method: DELETE
uri: http://localhost:3000/api/v1/statuses/113998803988190472
uri: http://localhost:3000/api/v1/statuses/115033972576535461
response:
body:
string: '{"id":"113998803988190472","created_at":"2025-02-13T21:55:03.438Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"en","uri":"http://localhost:3000/users/admin/statuses/113998803988190472","url":"http://localhost:3000/@admin/113998803988190472","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"text":"horses
string: '{"id":"115033972576535461","created_at":"2025-08-15T17:32:02.567Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"en","uri":"http://localhost:3000/users/admin/statuses/115033972576535461","url":"http://localhost:3000/@admin/115033972576535461","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"text":"horses
are not real","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
test suite","website":null},"account":{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
@ -606,14 +606,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"c1b8a8c284498b3c62f011316d1ed669"
- W/"15b6b58b48240315d02835930ce7828d"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.07, sql.active_record;dur=7.27, cache_generate.active_support;dur=16.53,
cache_write.active_support;dur=0.21, instantiation.active_record;dur=1.19,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=3.18,
render.active_model_serializers;dur=18.30, process_action.action_controller;dur=59.28
- cache_read.active_support;dur=0.05, sql.active_record;dur=7.30, cache_generate.active_support;dur=2.85,
cache_write.active_support;dur=0.14, instantiation.active_record;dur=0.61,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=4.45,
render.active_model_serializers;dur=18.39, process_action.action_controller;dur=49.72
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -625,11 +625,11 @@ interactions:
X-RateLimit-Remaining:
- '29'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.121242Z'
- '2025-08-15T18:00:00.262750Z'
X-Request-Id:
- 3fc76d4f-4e7a-423d-8514-93d9e2b9116c
- 3de67bee-b6e5-4f86-82f6-86600e5ffdd4
X-Runtime:
- '0.088748'
- '0.069614'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -18,7 +18,7 @@ interactions:
uri: http://localhost:3000/api/v1/tags/heeho/unfollow
response:
body:
string: '{"name":"heeho","url":"http://localhost:3000/tags/heeho","history":[{"day":"1739404800","accounts":"0","uses":"0"},{"day":"1739318400","accounts":"0","uses":"0"},{"day":"1739232000","accounts":"0","uses":"0"},{"day":"1739145600","accounts":"0","uses":"0"},{"day":"1739059200","accounts":"0","uses":"0"},{"day":"1738972800","accounts":"0","uses":"0"},{"day":"1738886400","accounts":"0","uses":"0"}],"following":false}'
string: '{"name":"heeho","url":"http://localhost:3000/tags/heeho","history":[{"day":"1755216000","accounts":"0","uses":"0"},{"day":"1755129600","accounts":"0","uses":"0"},{"day":"1755043200","accounts":"0","uses":"0"},{"day":"1754956800","accounts":"0","uses":"0"},{"day":"1754870400","accounts":"0","uses":"0"},{"day":"1754784000","accounts":"0","uses":"0"},{"day":"1754697600","accounts":"0","uses":"0"}],"following":false}'
headers:
Cache-Control:
- private, no-store
@ -29,14 +29,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"18b17474207470ef5337b71ad0baf4c4"
- W/"7af90ebad62460f0cb3c159159decf48"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=1.69, cache_generate.active_support;dur=1.03,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.44,
start_processing.action_controller;dur=0.01, render.active_model_serializers;dur=2.29,
process_action.action_controller;dur=34.40
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.77, cache_generate.active_support;dur=0.83,
cache_write.active_support;dur=0.06, instantiation.active_record;dur=0.27,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=1.88,
process_action.action_controller;dur=26.93
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -48,11 +48,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.680335Z'
- '2025-08-15T17:35:00.760691Z'
X-Request-Id:
- e26d5d9b-a6e0-4e42-8713-c9c29a75f668
- a1ff7d8a-0d03-410d-8ea3-9ed4d4bf6903
X-Runtime:
- '0.072818'
- '0.049749'
X-XSS-Protection:
- '0'
vary:
@ -66,7 +66,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -92,10 +92,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=2.65, cache_generate.active_support;dur=0.99,
cache_write.active_support;dur=0.09, instantiation.active_record;dur=0.33,
- cache_read.active_support;dur=0.02, sql.active_record;dur=2.42, cache_generate.active_support;dur=0.81,
cache_write.active_support;dur=0.06, instantiation.active_record;dur=0.19,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.04,
process_action.action_controller;dur=23.79
process_action.action_controller;dur=27.29
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -107,11 +107,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.737333Z'
- '2025-08-15T17:35:00.814544Z'
X-Request-Id:
- cd7695ba-88c4-456b-99fe-cf9454c13902
- c3816c05-bce7-4a0a-b72f-342164f47986
X-Runtime:
- '0.040994'
- '0.048224'
X-XSS-Protection:
- '0'
vary:
@ -125,7 +125,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -138,7 +138,7 @@ interactions:
uri: http://localhost:3000/api/v1/tags/heeho/follow
response:
body:
string: '{"name":"heeho","url":"http://localhost:3000/tags/heeho","history":[{"day":"1739404800","accounts":"0","uses":"0"},{"day":"1739318400","accounts":"0","uses":"0"},{"day":"1739232000","accounts":"0","uses":"0"},{"day":"1739145600","accounts":"0","uses":"0"},{"day":"1739059200","accounts":"0","uses":"0"},{"day":"1738972800","accounts":"0","uses":"0"},{"day":"1738886400","accounts":"0","uses":"0"}],"following":true}'
string: '{"name":"heeho","url":"http://localhost:3000/tags/heeho","history":[{"day":"1755216000","accounts":"0","uses":"0"},{"day":"1755129600","accounts":"0","uses":"0"},{"day":"1755043200","accounts":"0","uses":"0"},{"day":"1754956800","accounts":"0","uses":"0"},{"day":"1754870400","accounts":"0","uses":"0"},{"day":"1754784000","accounts":"0","uses":"0"},{"day":"1754697600","accounts":"0","uses":"0"}],"following":true}'
headers:
Cache-Control:
- private, no-store
@ -149,14 +149,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"8ef02514fafe00317b51293bd7d474d6"
- W/"a0d35266fe624ab1e7ef9d9138497ab4"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=5.03, cache_generate.active_support;dur=1.04,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.52,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=4.94,
render.active_model_serializers;dur=2.21, process_action.action_controller;dur=34.72
- cache_read.active_support;dur=0.02, sql.active_record;dur=5.93, cache_generate.active_support;dur=0.99,
cache_write.active_support;dur=0.06, instantiation.active_record;dur=0.27,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=6.23,
render.active_model_serializers;dur=2.26, process_action.action_controller;dur=33.74
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -168,11 +168,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.780319Z'
- '2025-08-15T17:35:00.872574Z'
X-Request-Id:
- 0fe467f9-7875-41f2-9907-5ed27ea37e4e
- 66fcfbbb-aeb4-4d3b-a6a3-aba6a5ca2aa4
X-Runtime:
- '0.050458'
- '0.055849'
X-XSS-Protection:
- '0'
vary:
@ -186,7 +186,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -197,7 +197,7 @@ interactions:
uri: http://localhost:3000/api/v1/followed_tags
response:
body:
string: '[{"name":"heeho","url":"http://localhost:3000/tags/heeho","history":[{"day":"1739404800","accounts":"0","uses":"0"},{"day":"1739318400","accounts":"0","uses":"0"},{"day":"1739232000","accounts":"0","uses":"0"},{"day":"1739145600","accounts":"0","uses":"0"},{"day":"1739059200","accounts":"0","uses":"0"},{"day":"1738972800","accounts":"0","uses":"0"},{"day":"1738886400","accounts":"0","uses":"0"}],"following":true}]'
string: '[{"name":"heeho","url":"http://localhost:3000/tags/heeho","history":[{"day":"1755216000","accounts":"0","uses":"0"},{"day":"1755129600","accounts":"0","uses":"0"},{"day":"1755043200","accounts":"0","uses":"0"},{"day":"1754956800","accounts":"0","uses":"0"},{"day":"1754870400","accounts":"0","uses":"0"},{"day":"1754784000","accounts":"0","uses":"0"},{"day":"1754697600","accounts":"0","uses":"0"}],"following":true}]'
headers:
Cache-Control:
- private, no-store
@ -208,16 +208,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"a9c450e91e706def15a20b01122bad7d"
- W/"1246369f46ef6c3468f5e5e61ff97a26"
Link:
- <http://localhost:3000/api/v1/followed_tags?since_id=1>; rel="prev"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=1.25, cache_generate.active_support;dur=1.05,
cache_write.active_support;dur=0.11, instantiation.active_record;dur=0.59,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=1.35,
process_action.action_controller;dur=23.72
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.83, cache_generate.active_support;dur=0.76,
cache_write.active_support;dur=0.06, instantiation.active_record;dur=0.32,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=1.47,
process_action.action_controller;dur=23.53
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -229,11 +229,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.837252Z'
- '2025-08-15T17:35:00.935982Z'
X-Request-Id:
- a7b30236-180d-4f1f-b524-abec09c45d44
- 959c2447-9571-4b2a-88ff-4454566d738b
X-Runtime:
- '0.040330'
- '0.042133'
X-XSS-Protection:
- '0'
vary:
@ -247,7 +247,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -260,7 +260,7 @@ interactions:
uri: http://localhost:3000/api/v1/tags/heeho/unfollow
response:
body:
string: '{"name":"heeho","url":"http://localhost:3000/tags/heeho","history":[{"day":"1739404800","accounts":"0","uses":"0"},{"day":"1739318400","accounts":"0","uses":"0"},{"day":"1739232000","accounts":"0","uses":"0"},{"day":"1739145600","accounts":"0","uses":"0"},{"day":"1739059200","accounts":"0","uses":"0"},{"day":"1738972800","accounts":"0","uses":"0"},{"day":"1738886400","accounts":"0","uses":"0"}],"following":false}'
string: '{"name":"heeho","url":"http://localhost:3000/tags/heeho","history":[{"day":"1755216000","accounts":"0","uses":"0"},{"day":"1755129600","accounts":"0","uses":"0"},{"day":"1755043200","accounts":"0","uses":"0"},{"day":"1754956800","accounts":"0","uses":"0"},{"day":"1754870400","accounts":"0","uses":"0"},{"day":"1754784000","accounts":"0","uses":"0"},{"day":"1754697600","accounts":"0","uses":"0"}],"following":false}'
headers:
Cache-Control:
- private, no-store
@ -271,14 +271,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"18b17474207470ef5337b71ad0baf4c4"
- W/"7af90ebad62460f0cb3c159159decf48"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=11.97, cache_generate.active_support;dur=1.77,
cache_write.active_support;dur=0.11, instantiation.active_record;dur=0.35,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=3.19,
render.active_model_serializers;dur=1.85, process_action.action_controller;dur=31.22
- cache_read.active_support;dur=0.02, sql.active_record;dur=6.30, cache_generate.active_support;dur=0.77,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=2.20,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=4.52,
render.active_model_serializers;dur=1.90, process_action.action_controller;dur=32.25
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -290,11 +290,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.891485Z'
- '2025-08-15T17:35:00.996329Z'
X-Request-Id:
- c27029eb-475a-4a80-884e-4d4cf83395f1
- 57eeba5d-9f2e-441b-a398-fb77ad8b6aa1
X-Runtime:
- '0.056924'
- '0.056997'
X-XSS-Protection:
- '0'
vary:
@ -308,7 +308,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -319,7 +319,7 @@ interactions:
uri: http://localhost:3000/api/v1/tags/heeho
response:
body:
string: '{"name":"heeho","url":"http://localhost:3000/tags/heeho","history":[{"day":"1739404800","accounts":"0","uses":"0"},{"day":"1739318400","accounts":"0","uses":"0"},{"day":"1739232000","accounts":"0","uses":"0"},{"day":"1739145600","accounts":"0","uses":"0"},{"day":"1739059200","accounts":"0","uses":"0"},{"day":"1738972800","accounts":"0","uses":"0"},{"day":"1738886400","accounts":"0","uses":"0"}],"following":false}'
string: '{"name":"heeho","url":"http://localhost:3000/tags/heeho","history":[{"day":"1755216000","accounts":"0","uses":"0"},{"day":"1755129600","accounts":"0","uses":"0"},{"day":"1755043200","accounts":"0","uses":"0"},{"day":"1754956800","accounts":"0","uses":"0"},{"day":"1754870400","accounts":"0","uses":"0"},{"day":"1754784000","accounts":"0","uses":"0"},{"day":"1754697600","accounts":"0","uses":"0"}],"following":false}'
headers:
Cache-Control:
- private, no-store
@ -330,14 +330,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"18b17474207470ef5337b71ad0baf4c4"
- W/"7af90ebad62460f0cb3c159159decf48"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.71, cache_generate.active_support;dur=0.83,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.38,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=1.73,
process_action.action_controller;dur=20.99
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.70, cache_generate.active_support;dur=0.75,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.20,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=2.13,
process_action.action_controller;dur=23.17
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -349,11 +349,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.941836Z'
- '2025-08-15T17:35:00.058900Z'
X-Request-Id:
- e130839f-7b69-4ad7-8009-ecb0a1911b78
- 62219e95-f114-4efd-ad5b-a8f5dd61c02f
X-Runtime:
- '0.035018'
- '0.042025'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -20,27 +20,29 @@ interactions:
uri: http://localhost:3000/api/v1/statuses
response:
body:
string: '{"id":"114009357138722264","created_at":"2025-02-15T18:38:51.731Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/114009357138722264","url":"http://localhost:3000/@mastodonpy_test/114009357138722264","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eTesting
string: '{"id":"115033981218379422","created_at":"2025-08-15T17:34:14.430Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/115033981218379422","url":"http://localhost:3000/@mastodonpy_test/115033981218379422","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eTesting
grouped notifications!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"114009019326978043","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-02-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
test suite","website":null},"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":0,"statuses_count":2,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
Content-Length:
- '1505'
- '1858'
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'; form-action 'none'
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"06fb25c4bf01795b2054bd152aeb8ef4"
- W/"b60deececc181c1f6e56e3a824c773be"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.05, sql.active_record;dur=11.42, cache_generate.active_support;dur=3.55,
cache_write.active_support;dur=0.15, instantiation.active_record;dur=0.54,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=4.50,
render.active_model_serializers;dur=15.64, process_action.action_controller;dur=63.46
- cache_read.active_support;dur=0.05, sql.active_record;dur=13.79, cache_generate.active_support;dur=2.85,
cache_write.active_support;dur=0.13, instantiation.active_record;dur=0.48,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=5.63,
render.active_model_serializers;dur=11.30, process_action.action_controller;dur=52.72
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -50,13 +52,13 @@ interactions:
X-RateLimit-Limit:
- '300'
X-RateLimit-Remaining:
- '298'
- '284'
X-RateLimit-Reset:
- '2025-02-15T21:00:00.763790Z'
- '2025-08-15T18:00:00.457894Z'
X-Request-Id:
- d4d9d0c4-0e3e-44ad-a7f8-c2b1dfa7efa3
- 2e242487-0bc2-4ab5-83bd-385155e1dfca
X-Runtime:
- '0.093185'
- '0.072830'
X-XSS-Protection:
- '0'
vary:
@ -70,7 +72,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -80,30 +82,32 @@ interactions:
User-Agent:
- tests/v311
method: POST
uri: http://localhost:3000/api/v1/statuses/114009357138722264/favourite
uri: http://localhost:3000/api/v1/statuses/115033981218379422/favourite
response:
body:
string: '{"id":"114009357138722264","created_at":"2025-02-15T18:38:51.731Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/114009357138722264","url":"http://localhost:3000/@mastodonpy_test/114009357138722264","replies_count":0,"reblogs_count":0,"favourites_count":1,"edited_at":null,"favourited":true,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003eTesting
string: '{"id":"115033981218379422","created_at":"2025-08-15T17:34:14.430Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/115033981218379422","url":"http://localhost:3000/@mastodonpy_test/115033981218379422","replies_count":0,"reblogs_count":0,"favourites_count":1,"edited_at":null,"favourited":true,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003eTesting
grouped notifications!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"114009019326978043","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-02-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
test suite","website":null},"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":0,"statuses_count":2,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
Content-Length:
- '1489'
- '1842'
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'; form-action 'none'
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"3ac631610fb82fcfb82750e1f7adccf9"
- W/"16ebfda5414b938baedbc894b97598b4"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.06, sql.active_record;dur=7.67, cache_generate.active_support;dur=3.17,
cache_write.active_support;dur=0.13, instantiation.active_record;dur=0.67,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=6.21,
render.active_model_serializers;dur=16.68, process_action.action_controller;dur=47.95
- cache_read.active_support;dur=0.07, sql.active_record;dur=7.59, cache_generate.active_support;dur=4.15,
cache_write.active_support;dur=0.13, instantiation.active_record;dur=0.66,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=6.55,
render.active_model_serializers;dur=14.30, process_action.action_controller;dur=51.27
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -115,11 +119,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-15T18:40:00.828950Z'
- '2025-08-15T17:35:00.536787Z'
X-Request-Id:
- 6ec29c54-8c91-4b9f-9c88-275a236b5775
- 884c9652-968a-4615-a0f5-62bcb7bf001b
X-Runtime:
- '0.063835'
- '0.074669'
X-XSS-Protection:
- '0'
vary:
@ -133,7 +137,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_3
Connection:
@ -143,30 +147,32 @@ interactions:
User-Agent:
- tests/v311
method: POST
uri: http://localhost:3000/api/v1/statuses/114009357138722264/favourite
uri: http://localhost:3000/api/v1/statuses/115033981218379422/favourite
response:
body:
string: '{"id":"114009357138722264","created_at":"2025-02-15T18:38:51.731Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/114009357138722264","url":"http://localhost:3000/@mastodonpy_test/114009357138722264","replies_count":0,"reblogs_count":0,"favourites_count":2,"edited_at":null,"favourited":true,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003eTesting
string: '{"id":"115033981218379422","created_at":"2025-08-15T17:34:14.430Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/115033981218379422","url":"http://localhost:3000/@mastodonpy_test/115033981218379422","replies_count":0,"reblogs_count":0,"favourites_count":2,"edited_at":null,"favourited":true,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003eTesting
grouped notifications!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"114009019326978043","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-02-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
test suite","website":null},"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":0,"statuses_count":2,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
Content-Length:
- '1489'
- '1842'
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'; form-action 'none'
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"bfcc74cd78fb7eb5b1351bb0f8e1a5fb"
- W/"cb0d126f2342bca4b14afdf7d4678588"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.05, sql.active_record;dur=7.32, cache_generate.active_support;dur=3.52,
cache_write.active_support;dur=0.14, instantiation.active_record;dur=0.68,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=5.76,
render.active_model_serializers;dur=14.78, process_action.action_controller;dur=48.71
- cache_read.active_support;dur=0.05, sql.active_record;dur=7.84, cache_generate.active_support;dur=2.80,
cache_write.active_support;dur=0.14, instantiation.active_record;dur=0.70,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=6.92,
render.active_model_serializers;dur=17.67, process_action.action_controller;dur=53.93
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -178,11 +184,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-15T18:40:00.926662Z'
- '2025-08-15T17:35:00.648833Z'
X-Request-Id:
- f0f16848-82d0-457c-876c-9aa3e56deed7
- 6947d45f-1128-40bd-b120-954aae4bf898
X-Runtime:
- '0.063387'
- '0.074741'
X-XSS-Protection:
- '0'
vary:
@ -196,7 +202,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -207,30 +213,32 @@ interactions:
uri: http://localhost:3000/api/v2/notifications?limit=10&expand_accounts=partial_avatars
response:
body:
string: '{"accounts":[{"id":"114009019470060047","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-02-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]}],"partial_accounts":[{"id":"114009019031846737","acct":"admin","locked":false,"bot":false,"url":"http://localhost:3000/@admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png"}],"statuses":[{"id":"114009357138722264","created_at":"2025-02-15T18:38:51.731Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/114009357138722264","url":"http://localhost:3000/@mastodonpy_test/114009357138722264","replies_count":0,"reblogs_count":0,"favourites_count":2,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eTesting
string: '{"accounts":[{"id":"115033965921234147","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]}],"partial_accounts":[{"id":"115033965466813222","acct":"admin","locked":false,"bot":false,"url":"http://localhost:3000/@admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png"}],"statuses":[{"id":"115033981218379422","created_at":"2025-08-15T17:34:14.430Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/115033981218379422","url":"http://localhost:3000/@mastodonpy_test/115033981218379422","replies_count":0,"reblogs_count":0,"favourites_count":2,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eTesting
grouped notifications!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"114009019326978043","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-02-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}],"notification_groups":[{"group_key":"favourite-114009357138722264-483234","notifications_count":2,"type":"favourite","most_recent_notification_id":190,"page_min_id":"190","page_max_id":"190","latest_page_notification_at":"2025-02-15T18:38:52.146Z","sample_account_ids":["114009019470060047","114009019031846737"],"status_id":"114009357138722264"}]}'
test suite","website":null},"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":0,"statuses_count":2,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}],"notification_groups":[{"group_key":"favourite-115033981218379422-487577","notifications_count":2,"type":"favourite","most_recent_notification_id":34,"page_min_id":"34","page_max_id":"34","latest_page_notification_at":"2025-08-15T17:34:14.886Z","sample_account_ids":["115033965921234147","115033965466813222"],"status_id":"115033981218379422"}]}'
headers:
Cache-Control:
- private, no-store
Content-Length:
- '2901'
- '3251'
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'; form-action 'none'
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"e5e803ebda94a4f2c5aeb551c6ecd9ea"
- W/"de93644cbd461db971972a20e9ff2b5d"
Link:
- <http://localhost:3000/api/v2/notifications?limit=10&max_id=190>; rel="next",
<http://localhost:3000/api/v2/notifications?limit=10&min_id=190>; rel="prev"
- <http://localhost:3000/api/v2/notifications?limit=10&max_id=34>; rel="next",
<http://localhost:3000/api/v2/notifications?limit=10&min_id=34>; rel="prev"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.10, sql.active_record;dur=9.10, cache_generate.active_support;dur=2.97,
cache_write.active_support;dur=0.15, instantiation.active_record;dur=1.04,
- cache_read.active_support;dur=0.08, sql.active_record;dur=4.10, cache_generate.active_support;dur=2.66,
cache_write.active_support;dur=0.12, instantiation.active_record;dur=0.96,
start_processing.action_controller;dur=0.00, cache_fetch_hit.active_support;dur=0.00,
render.active_model_serializers;dur=5.52, process_action.action_controller;dur=58.12
render.active_model_serializers;dur=6.68, process_action.action_controller;dur=53.12
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -242,11 +250,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-15T18:40:00.028981Z'
- '2025-08-15T17:35:00.774447Z'
X-Request-Id:
- fae9562c-f5be-4da1-af05-181bb7dd30f3
- 9bab9b1f-0a83-40f6-987d-8b258c155d09
X-Runtime:
- '0.073893'
- '0.086478'
X-XSS-Protection:
- '0'
vary:
@ -260,7 +268,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -268,30 +276,32 @@ interactions:
User-Agent:
- tests/v311
method: GET
uri: http://localhost:3000/api/v2/notifications/favourite-114009357138722264-483234
uri: http://localhost:3000/api/v2/notifications/favourite-115033981218379422-487577
response:
body:
string: '{"accounts":[{"id":"114009019470060047","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-02-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},{"id":"114009019031846737","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":5,"last_status_at":"2025-02-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]}],"statuses":[{"id":"114009357138722264","created_at":"2025-02-15T18:38:51.731Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/114009357138722264","url":"http://localhost:3000/@mastodonpy_test/114009357138722264","replies_count":0,"reblogs_count":0,"favourites_count":2,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eTesting
string: '{"accounts":[{"id":"115033965921234147","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]}],"statuses":[{"id":"115033981218379422","created_at":"2025-08-15T17:34:14.430Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/115033981218379422","url":"http://localhost:3000/@mastodonpy_test/115033981218379422","replies_count":0,"reblogs_count":0,"favourites_count":2,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eTesting
grouped notifications!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"114009019326978043","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-02-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}],"notification_groups":[{"group_key":"favourite-114009357138722264-483234","notifications_count":2,"type":"favourite","most_recent_notification_id":190,"sample_account_ids":["114009019470060047","114009019031846737"],"status_id":"114009357138722264"}]}'
test suite","website":null},"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":0,"statuses_count":2,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}],"notification_groups":[{"group_key":"favourite-115033981218379422-487577","notifications_count":2,"type":"favourite","most_recent_notification_id":34,"sample_account_ids":["115033965921234147","115033965466813222"],"status_id":"115033981218379422"}]}'
headers:
Cache-Control:
- private, no-store
Content-Length:
- '3295'
- '3647'
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'; form-action 'none'
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"b4015be5d4c161ff654954b9a12091f7"
- W/"915e6b9fb1317e94803fabf88c111d5a"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.15, sql.active_record;dur=4.10, cache_generate.active_support;dur=2.80,
cache_write.active_support;dur=0.13, instantiation.active_record;dur=1.19,
start_processing.action_controller;dur=0.00, cache_fetch_hit.active_support;dur=0.01,
render.active_model_serializers;dur=27.82, process_action.action_controller;dur=49.35
- cache_read.active_support;dur=0.13, sql.active_record;dur=3.53, cache_generate.active_support;dur=2.87,
cache_write.active_support;dur=0.12, instantiation.active_record;dur=1.23,
start_processing.action_controller;dur=0.01, cache_fetch_hit.active_support;dur=0.01,
render.active_model_serializers;dur=23.04, process_action.action_controller;dur=48.94
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -303,11 +313,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-15T18:40:00.158661Z'
- '2025-08-15T17:35:00.916741Z'
X-Request-Id:
- a0c00eab-c12d-4e1e-a03e-0c10eeab8de2
- 2274412f-8327-4ef2-b9ec-f8b45616e0ec
X-Runtime:
- '0.063807'
- '0.082232'
X-XSS-Protection:
- '0'
vary:
@ -321,7 +331,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -329,10 +339,10 @@ interactions:
User-Agent:
- tests/v311
method: GET
uri: http://localhost:3000/api/v2/notifications/favourite-114009357138722264-483234/accounts
uri: http://localhost:3000/api/v2/notifications/favourite-115033981218379422-487577/accounts
response:
body:
string: '[{"id":"114009019470060047","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-02-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},{"id":"114009019031846737","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":5,"last_status_at":"2025-02-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]}]'
string: '[{"id":"115033965921234147","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]}]'
headers:
Cache-Control:
- private, no-store
@ -343,17 +353,17 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"fb8e14dd97709a52f5a45c9d4e447a24"
- W/"9281fdba98aebd506df8f04a54387e2f"
Link:
- <http://localhost:3000/api/v2/notifications/favourite-114009357138722264-483234/accounts?min_id=190>;
- <http://localhost:3000/api/v2/notifications/favourite-115033981218379422-487577/accounts?min_id=34>;
rel="prev"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.08, sql.active_record;dur=1.64, cache_generate.active_support;dur=1.47,
cache_write.active_support;dur=0.11, instantiation.active_record;dur=0.60,
start_processing.action_controller;dur=0.01, cache_fetch_hit.active_support;dur=0.00,
render.active_model_serializers;dur=3.89, process_action.action_controller;dur=27.45
- cache_read.active_support;dur=0.07, sql.active_record;dur=1.47, cache_generate.active_support;dur=1.41,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.60,
start_processing.action_controller;dur=0.00, cache_fetch_hit.active_support;dur=0.00,
render.active_model_serializers;dur=3.95, process_action.action_controller;dur=30.08
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -365,11 +375,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-15T18:40:00.295492Z'
- '2025-08-15T17:35:00.058070Z'
X-Request-Id:
- 0e34fa26-6d71-4c7d-aeec-8eee17c493fb
- 51788556-9f9e-4567-90f1-8eaa5eee40f3
X-Runtime:
- '0.056571'
- '0.052628'
X-XSS-Protection:
- '0'
vary:
@ -383,7 +393,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -393,7 +403,7 @@ interactions:
User-Agent:
- tests/v311
method: POST
uri: http://localhost:3000/api/v2/notifications/favourite-114009357138722264-483234/dismiss
uri: http://localhost:3000/api/v2/notifications/favourite-115033981218379422-487577/dismiss
response:
body:
string: '{}'
@ -411,10 +421,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=7.02, cache_generate.active_support;dur=0.95,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.45,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=7.46,
render.active_model_serializers;dur=0.03, process_action.action_controller;dur=30.07
- cache_read.active_support;dur=0.02, sql.active_record;dur=8.88, cache_generate.active_support;dur=0.97,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.39,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=9.06,
render.active_model_serializers;dur=0.05, process_action.action_controller;dur=33.68
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -426,11 +436,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-15T18:40:00.366862Z'
- '2025-08-15T17:35:00.146888Z'
X-Request-Id:
- 512683b1-cf01-497d-8e16-e853aae9d9c2
- 5898dbfc-4733-4074-a026-cf672293316c
X-Runtime:
- '0.044774'
- '0.052902'
X-XSS-Protection:
- '0'
vary:
@ -444,7 +454,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -470,10 +480,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=1.65, cache_generate.active_support;dur=2.39,
cache_write.active_support;dur=0.11, instantiation.active_record;dur=0.25,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.26,
process_action.action_controller;dur=22.95
- cache_read.active_support;dur=0.03, sql.active_record;dur=1.39, cache_generate.active_support;dur=2.20,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.20,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.25,
process_action.action_controller;dur=25.31
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -485,11 +495,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-15T18:40:00.414885Z'
- '2025-08-15T17:35:00.207952Z'
X-Request-Id:
- a16d6183-ac0e-4bb2-bb6d-4415200bb284
- e899fa64-b6e1-4b2e-8122-dd27ed70c7a6
X-Runtime:
- '0.037428'
- '0.043843'
X-XSS-Protection:
- '0'
vary:
@ -503,7 +513,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -513,30 +523,32 @@ interactions:
User-Agent:
- tests/v311
method: DELETE
uri: http://localhost:3000/api/v1/statuses/114009357138722264
uri: http://localhost:3000/api/v1/statuses/115033981218379422
response:
body:
string: '{"id":"114009357138722264","created_at":"2025-02-15T18:38:51.731Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/114009357138722264","url":"http://localhost:3000/@mastodonpy_test/114009357138722264","replies_count":0,"reblogs_count":0,"favourites_count":2,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"text":"Testing
string: '{"id":"115033981218379422","created_at":"2025-08-15T17:34:14.430Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/115033981218379422","url":"http://localhost:3000/@mastodonpy_test/115033981218379422","replies_count":0,"reblogs_count":0,"favourites_count":2,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"text":"Testing
grouped notifications!","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"114009019326978043","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
test suite","website":null},"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
Content-Length:
- '1475'
- '1828'
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'; form-action 'none'
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"61fa0386cc5fd7fcd2b5cbd617ebfb55"
- W/"b0b720504a75bfd0603f6991ddee7731"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.05, sql.active_record;dur=6.22, cache_generate.active_support;dur=2.83,
cache_write.active_support;dur=0.17, instantiation.active_record;dur=0.75,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=3.13,
render.active_model_serializers;dur=13.62, process_action.action_controller;dur=41.39
- cache_read.active_support;dur=0.05, sql.active_record;dur=7.19, cache_generate.active_support;dur=2.97,
cache_write.active_support;dur=0.14, instantiation.active_record;dur=0.62,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=4.58,
render.active_model_serializers;dur=12.58, process_action.action_controller;dur=47.92
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -548,11 +560,11 @@ interactions:
X-RateLimit-Remaining:
- '29'
X-RateLimit-Reset:
- '2025-02-15T19:00:00.460335Z'
- '2025-08-15T18:00:00.263225Z'
X-Request-Id:
- d68ff7be-46c4-4ed4-8f9b-14792c89aa98
- 88b24c3f-40da-4f26-b978-301c4a3f3a22
X-Runtime:
- '0.059427'
- '0.067273'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_3
Connection:
@ -20,10 +20,10 @@ interactions:
uri: http://localhost:3000/api/v1/statuses
response:
body:
string: '{"id":"113998819633823864","created_at":"2025-02-13T21:59:02.167Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test_2/statuses/113998819633823864","url":"http://localhost:3000/@mastodonpy_test_2/113998819633823864","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003e\u003ca
string: '{"id":"115033992372690424","created_at":"2025-08-15T17:37:04.634Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test_2/statuses/115033992372690424","url":"http://localhost:3000/@mastodonpy_test_2/115033992372690424","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003e\u003ca
href=\"http://localhost:3000/tags/hoot\" class=\"mention hashtag\" rel=\"tag\"\u003e#\u003cspan\u003ehoot\u003c/span\u003e\u003c/a\u003e
(hashtag toot)\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801391516277","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":3,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"media_attachments":[],"mentions":[],"tags":[{"name":"hoot","url":"http://localhost:3000/tags/hoot"}],"emojis":[],"card":null,"poll":null}'
test suite","website":null},"account":{"id":"115033965921234147","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":3,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"media_attachments":[],"mentions":[],"tags":[{"name":"hoot","url":"http://localhost:3000/tags/hoot"}],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
@ -34,14 +34,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"d4f69e673837d1bbfd2ae42e8e436cde"
- W/"8f16c3fb2aa8a5b25d1488f1efa3cf30"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.06, sql.active_record;dur=22.03, cache_generate.active_support;dur=2.82,
cache_write.active_support;dur=0.13, instantiation.active_record;dur=0.51,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=10.74,
render.active_model_serializers;dur=11.84, process_action.action_controller;dur=66.53
- cache_read.active_support;dur=0.05, sql.active_record;dur=21.78, cache_generate.active_support;dur=6.81,
cache_write.active_support;dur=0.42, instantiation.active_record;dur=0.50,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=14.30,
render.active_model_serializers;dur=14.05, process_action.action_controller;dur=68.08
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -53,11 +53,11 @@ interactions:
X-RateLimit-Remaining:
- '257'
X-RateLimit-Reset:
- '2025-02-14T00:00:00.210281Z'
- '2025-08-15T18:00:00.675408Z'
X-Request-Id:
- 4d2b800b-980c-4006-a193-281dcd3563df
- fe7d03c4-4770-43d5-8faf-123a3316b71c
X-Runtime:
- '0.081247'
- '0.088375'
X-XSS-Protection:
- '0'
vary:
@ -71,7 +71,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_3
Connection:
@ -82,10 +82,10 @@ interactions:
uri: http://localhost:3000/api/v1/timelines/tag/hoot
response:
body:
string: '[{"id":"113998819633823864","created_at":"2025-02-13T21:59:02.167Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test_2/statuses/113998819633823864","url":"http://localhost:3000/@mastodonpy_test_2/113998819633823864","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003e\u003ca
string: '[{"id":"115033992372690424","created_at":"2025-08-15T17:37:04.634Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test_2/statuses/115033992372690424","url":"http://localhost:3000/@mastodonpy_test_2/115033992372690424","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003e\u003ca
href=\"http://localhost:3000/tags/hoot\" class=\"mention hashtag\" rel=\"tag\"\u003e#\u003cspan\u003ehoot\u003c/span\u003e\u003c/a\u003e
(hashtag toot)\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801391516277","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":3,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"media_attachments":[],"mentions":[],"tags":[{"name":"hoot","url":"http://localhost:3000/tags/hoot"}],"emojis":[],"card":null,"poll":null}]'
test suite","website":null},"account":{"id":"115033965921234147","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":3,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"media_attachments":[],"mentions":[],"tags":[{"name":"hoot","url":"http://localhost:3000/tags/hoot"}],"emojis":[],"card":null,"poll":null}]'
headers:
Cache-Control:
- private, no-store
@ -96,18 +96,18 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"aa936e87cd1020dea88ba0068c1a8e0e"
- W/"ee31ee7a90ce35cfdf3d88425ccc36c3"
Link:
- <http://localhost:3000/api/v1/timelines/tag/hoot?max_id=113998819633823864>;
rel="next", <http://localhost:3000/api/v1/timelines/tag/hoot?min_id=113998819633823864>;
- <http://localhost:3000/api/v1/timelines/tag/hoot?max_id=115033992372690424>;
rel="next", <http://localhost:3000/api/v1/timelines/tag/hoot?min_id=115033992372690424>;
rel="prev"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.10, sql.active_record;dur=3.83, cache_generate.active_support;dur=5.83,
cache_write.active_support;dur=0.26, instantiation.active_record;dur=0.78,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.18,
process_action.action_controller;dur=43.85
- cache_read.active_support;dur=0.07, sql.active_record;dur=3.62, cache_generate.active_support;dur=5.45,
cache_write.active_support;dur=0.17, instantiation.active_record;dur=0.60,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=3.26,
process_action.action_controller;dur=41.87
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -119,11 +119,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.276187Z'
- '2025-08-15T17:40:00.750778Z'
X-Request-Id:
- bb2d2667-fd5d-4e1c-acf1-ec67372f3184
- d8fb0df8-dcc1-4eaa-bb96-72594157b2f0
X-Runtime:
- '0.061406'
- '0.061541'
X-XSS-Protection:
- '0'
vary:
@ -137,7 +137,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_3
Connection:
@ -147,12 +147,12 @@ interactions:
User-Agent:
- tests/v311
method: DELETE
uri: http://localhost:3000/api/v1/statuses/113998819633823864
uri: http://localhost:3000/api/v1/statuses/115033992372690424
response:
body:
string: '{"id":"113998819633823864","created_at":"2025-02-13T21:59:02.167Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test_2/statuses/113998819633823864","url":"http://localhost:3000/@mastodonpy_test_2/113998819633823864","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"text":"#hoot
string: '{"id":"115033992372690424","created_at":"2025-08-15T17:37:04.634Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test_2/statuses/115033992372690424","url":"http://localhost:3000/@mastodonpy_test_2/115033992372690424","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"text":"#hoot
(hashtag toot)","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801391516277","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":2,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"media_attachments":[],"mentions":[],"tags":[{"name":"hoot","url":"http://localhost:3000/tags/hoot"}],"emojis":[],"card":null,"poll":null}'
test suite","website":null},"account":{"id":"115033965921234147","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":2,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"media_attachments":[],"mentions":[],"tags":[{"name":"hoot","url":"http://localhost:3000/tags/hoot"}],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
@ -163,14 +163,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"54ff75ea8e4e5cd562263082326b81af"
- W/"4eb3cfd4e35b08456880b4cbe0780dac"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.05, sql.active_record;dur=13.36, cache_generate.active_support;dur=6.17,
cache_write.active_support;dur=0.16, instantiation.active_record;dur=0.67,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=10.87,
render.active_model_serializers;dur=20.42, process_action.action_controller;dur=55.20
- cache_read.active_support;dur=0.05, sql.active_record;dur=7.34, cache_generate.active_support;dur=3.10,
cache_write.active_support;dur=0.16, instantiation.active_record;dur=0.69,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=5.03,
render.active_model_serializers;dur=13.35, process_action.action_controller;dur=45.15
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -182,11 +182,11 @@ interactions:
X-RateLimit-Remaining:
- '29'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.375044Z'
- '2025-08-15T18:00:00.854251Z'
X-Request-Id:
- ea2a7c9c-12f4-4280-b46f-37f1eb05ba50
- eea7ac78-5817-42f4-9cb2-0d862fd9b7e2
X-Runtime:
- '0.076537'
- '0.065265'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -25,7 +25,7 @@ interactions:
Content-Security-Policy:
- 'base-uri ''none''; default-src ''none''; frame-ancestors ''none''; font-src
''self'' http://localhost:3000; img-src ''self'' data: blob: http://localhost:3000;
style-src ''self'' http://localhost:3000 ''nonce-1BqI3iO2eJXY7Rm8bWXwjw=='';
style-src ''self'' http://localhost:3000 ''nonce-EkDOsT3hahRtnTyZV5XupA=='';
media-src ''self'' data: http://localhost:3000; manifest-src ''self'' http://localhost:3000;
form-action ''self''; child-src ''self'' blob: http://localhost:3000; worker-src
''self'' blob: http://localhost:3000; connect-src ''self'' data: blob: http://localhost:3000
@ -39,9 +39,9 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.08, cache_generate.active_support;dur=0.91,
cache_write.active_support;dur=0.04, start_processing.action_controller;dur=0.00,
render_template.action_view;dur=0.01, process_action.action_controller;dur=17.70
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.12, cache_generate.active_support;dur=1.09,
cache_write.active_support;dur=0.05, start_processing.action_controller;dur=0.01,
render_template.action_view;dur=0.01, process_action.action_controller;dur=21.48
Vary:
- Accept
X-Content-Type-Options:
@ -51,9 +51,9 @@ interactions:
X-Permitted-Cross-Domain-Policies:
- none
X-Request-Id:
- 55ff04d6-3dbe-440f-a394-aafb102cab21
- d9d6c506-1a36-440c-9f2c-9bbfb03b6af9
X-Runtime:
- '0.035248'
- '0.044690'
X-XSS-Protection:
- '0'
status:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -20,10 +20,10 @@ interactions:
uri: http://localhost:3000/api/v1/statuses
response:
body:
string: '{"id":"113998819401746892","created_at":"2025-02-13T21:58:58.626Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/113998819401746892","url":"http://localhost:3000/@mastodonpy_test/113998819401746892","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eToot!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":1,"statuses_count":6,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
string: '{"id":"115033992135793079","created_at":"2025-08-15T17:37:01.018Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/115033992135793079","url":"http://localhost:3000/@mastodonpy_test/115033992135793079","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eToot!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":1,"statuses_count":6,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
@ -34,14 +34,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"9c103d61da0d50d0a936469f83b0b657"
- W/"8ba541f1f8d1385a2e1cd537bed5dafa"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.06, sql.active_record;dur=10.48, cache_generate.active_support;dur=2.85,
cache_write.active_support;dur=0.15, instantiation.active_record;dur=0.54,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=4.71,
render.active_model_serializers;dur=10.68, process_action.action_controller;dur=48.64
- cache_read.active_support;dur=0.05, sql.active_record;dur=13.72, cache_generate.active_support;dur=2.76,
cache_write.active_support;dur=0.13, instantiation.active_record;dur=0.48,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=5.68,
render.active_model_serializers;dur=14.95, process_action.action_controller;dur=55.45
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -51,13 +51,13 @@ interactions:
X-RateLimit-Limit:
- '300'
X-RateLimit-Remaining:
- '238'
- '225'
X-RateLimit-Reset:
- '2025-02-14T00:00:00.651197Z'
- '2025-08-15T18:00:00.048339Z'
X-Request-Id:
- 7c039f00-327b-4271-98b5-5d5725751b26
- 24046bcc-a57e-49b3-8b11-002d17ee9153
X-Runtime:
- '0.064720'
- '0.074933'
X-XSS-Protection:
- '0'
vary:
@ -71,7 +71,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -82,35 +82,35 @@ interactions:
uri: http://localhost:3000/api/v1/timelines/home
response:
body:
string: '[{"id":"113998819401746892","created_at":"2025-02-13T21:58:58.626Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/113998819401746892","url":"http://localhost:3000/@mastodonpy_test/113998819401746892","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eToot!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":1,"statuses_count":5,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null},{"id":"113998817732877641","created_at":"2025-02-13T21:58:33.161Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"en","uri":"http://localhost:3000/users/admin/statuses/113998817732877641","url":"http://localhost:3000/@admin/113998817732877641","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003eyou
string: '[{"id":"115033992135793079","created_at":"2025-08-15T17:37:01.018Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/115033992135793079","url":"http://localhost:3000/@mastodonpy_test/115033992135793079","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eToot!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":1,"statuses_count":5,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null},{"id":"115033990841481626","created_at":"2025-08-15T17:36:41.268Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"en","uri":"http://localhost:3000/users/admin/statuses/115033990841481626","url":"http://localhost:3000/@admin/115033990841481626","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003eyou
can\u0026#39;t say that on television\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":5,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null},{"id":"113998817726451380","created_at":"2025-02-13T21:58:33.064Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"direct","language":"en","uri":"http://localhost:3000/users/admin/statuses/113998817726451380","url":"http://localhost:3000/@admin/113998817726451380","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003e\u003cspan
test suite","website":null},"account":{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":5,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null},{"id":"115033990834776045","created_at":"2025-08-15T17:36:41.167Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"direct","language":"en","uri":"http://localhost:3000/users/admin/statuses/115033990834776045","url":"http://localhost:3000/@admin/115033990834776045","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003e\u003cspan
class=\"h-card\" translate=\"no\"\u003e\u003ca href=\"http://localhost:3000/@mastodonpy_test\"
class=\"u-url mention\"\u003e@\u003cspan\u003emastodonpy_test\u003c/span\u003e\u003c/a\u003e\u003c/span\u003e
todo funny text here\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":5,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[{"id":"113998801242326861","username":"mastodonpy_test","url":"http://localhost:3000/@mastodonpy_test","acct":"mastodonpy_test"}],"tags":[],"emojis":[],"card":null,"poll":null},{"id":"113998816079491680","created_at":"2025-02-13T21:58:07.932Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"en","uri":"http://localhost:3000/users/admin/statuses/113998816079491680","url":"http://localhost:3000/@admin/113998816079491680","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003eit\u0026#39;s
test suite","website":null},"account":{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":5,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[{"id":"115033965771926537","username":"mastodonpy_test","url":"http://localhost:3000/@mastodonpy_test","acct":"mastodonpy_test"}],"tags":[],"emojis":[],"card":null,"poll":null},{"id":"115033989175788069","created_at":"2025-08-15T17:36:15.852Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"en","uri":"http://localhost:3000/users/admin/statuses/115033989175788069","url":"http://localhost:3000/@admin/115033989175788069","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003eit\u0026#39;s
cool guy too\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":5,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null},{"id":"113998816073673525","created_at":"2025-02-13T21:58:07.842Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/113998816073673525","url":"http://localhost:3000/@mastodonpy_test/113998816073673525","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eit\u0026#39;s
test suite","website":null},"account":{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":5,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null},{"id":"115033989168780409","created_at":"2025-08-15T17:36:15.744Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/115033989168780409","url":"http://localhost:3000/@mastodonpy_test/115033989168780409","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eit\u0026#39;s
cool guy\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":1,"statuses_count":5,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null},{"id":"113998814250739998","created_at":"2025-02-13T21:57:40.029Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"direct","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/113998814250739998","url":"http://localhost:3000/@mastodonpy_test/113998814250739998","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003e\u003cspan
test suite","website":null},"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":1,"statuses_count":5,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null},{"id":"115033987016590690","created_at":"2025-08-15T17:35:42.905Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"direct","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/115033987016590690","url":"http://localhost:3000/@mastodonpy_test/115033987016590690","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003e\u003cspan
class=\"h-card\" translate=\"no\"\u003e\u003ca href=\"http://localhost:3000/@mastodonpy_test_2\"
class=\"u-url mention\"\u003e@\u003cspan\u003emastodonpy_test_2\u003c/span\u003e\u003c/a\u003e\u003c/span\u003e
pssssst\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":1,"statuses_count":5,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[{"id":"113998801391516277","username":"mastodonpy_test_2","url":"http://localhost:3000/@mastodonpy_test_2","acct":"mastodonpy_test_2"}],"tags":[],"emojis":[],"card":null,"poll":null},{"id":"113998814178645108","created_at":"2025-02-13T21:57:38.927Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"en","uri":"http://localhost:3000/users/admin/statuses/113998814178645108","url":"http://localhost:3000/@admin/113998814178645108","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003eon
test suite","website":null},"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":1,"statuses_count":5,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[{"id":"115033965921234147","username":"mastodonpy_test_2","url":"http://localhost:3000/@mastodonpy_test_2","acct":"mastodonpy_test_2"}],"tags":[],"emojis":[],"card":null,"poll":null},{"id":"115033986937525703","created_at":"2025-08-15T17:35:41.702Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"en","uri":"http://localhost:3000/users/admin/statuses/115033986937525703","url":"http://localhost:3000/@admin/115033986937525703","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003eon
the internet, nobody knows you\u0026#39;re a plane\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":5,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null},{"id":"113998814106163410","created_at":"2025-02-13T21:57:37.823Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"en","uri":"http://localhost:3000/users/admin/statuses/113998814106163410","url":"http://localhost:3000/@admin/113998814106163410","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003e\u003cspan
test suite","website":null},"account":{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":5,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null},{"id":"115033986864080189","created_at":"2025-08-15T17:35:40.578Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"en","uri":"http://localhost:3000/users/admin/statuses/115033986864080189","url":"http://localhost:3000/@admin/115033986864080189","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003e\u003cspan
class=\"h-card\" translate=\"no\"\u003e\u003ca href=\"http://localhost:3000/@mastodonpy_test\"
class=\"u-url mention\"\u003e@\u003cspan\u003emastodonpy_test\u003c/span\u003e\u003c/a\u003e\u003c/span\u003e
beep beep I\u0026#39;m a jeep\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":5,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[{"id":"113998801242326861","username":"mastodonpy_test","url":"http://localhost:3000/@mastodonpy_test","acct":"mastodonpy_test"}],"tags":[],"emojis":[],"card":null,"poll":null},{"id":"113998810972107187","created_at":"2025-02-13T21:56:49.999Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"en","uri":"http://localhost:3000/users/admin/statuses/113998810972107187","url":"http://localhost:3000/@admin/113998810972107187","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003enice\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":5,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":{"id":"2","expires_at":"2025-02-13T22:01:49.997Z","expired":false,"multiple":false,"votes_count":1,"voters_count":1,"voted":true,"own_votes":[1],"options":[{"title":"four
test suite","website":null},"account":{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":5,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[{"id":"115033965771926537","username":"mastodonpy_test","url":"http://localhost:3000/@mastodonpy_test","acct":"mastodonpy_test"}],"tags":[],"emojis":[],"card":null,"poll":null},{"id":"115033983313709119","created_at":"2025-08-15T17:34:46.406Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"en","uri":"http://localhost:3000/users/admin/statuses/115033983313709119","url":"http://localhost:3000/@admin/115033983313709119","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003enice\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":5,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":{"id":"2","expires_at":"2025-08-15T17:39:46.401Z","expired":false,"multiple":false,"votes_count":1,"voters_count":1,"voted":true,"own_votes":[1],"options":[{"title":"four
twenty","votes_count":0},{"title":"sixty-nine","votes_count":1}],"emojis":[]}}]'
headers:
Cache-Control:
@ -122,17 +122,17 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"f07f09e9febcde007e4484fff77855e7"
- W/"c3022ee695e350b464c6b02d696cebdc"
Link:
- <http://localhost:3000/api/v1/timelines/home?max_id=113998810972107187>; rel="next",
<http://localhost:3000/api/v1/timelines/home?min_id=113998819401746892>; rel="prev"
- <http://localhost:3000/api/v1/timelines/home?max_id=115033983313709119>; rel="next",
<http://localhost:3000/api/v1/timelines/home?min_id=115033992135793079>; rel="prev"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.27, sql.active_record;dur=10.33, cache_generate.active_support;dur=13.53,
cache_write.active_support;dur=0.17, instantiation.active_record;dur=1.43,
start_processing.action_controller;dur=0.01, cache_fetch_hit.active_support;dur=0.01,
render.active_model_serializers;dur=20.67, process_action.action_controller;dur=82.36
- cache_read.active_support;dur=0.20, sql.active_record;dur=3.75, cache_generate.active_support;dur=2.96,
cache_write.active_support;dur=0.12, instantiation.active_record;dur=0.85,
start_processing.action_controller;dur=0.00, cache_fetch_hit.active_support;dur=0.02,
render.active_model_serializers;dur=19.17, process_action.action_controller;dur=58.11
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -144,11 +144,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.723144Z'
- '2025-08-15T17:40:00.125164Z'
X-Request-Id:
- 41c57ef3-9a25-4865-82af-e329feb82867
- 196f4562-491e-48b6-ad93-84eed9b9670b
X-Runtime:
- '0.101663'
- '0.076816'
X-XSS-Protection:
- '0'
vary:
@ -162,7 +162,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -172,13 +172,13 @@ interactions:
User-Agent:
- tests/v311
method: DELETE
uri: http://localhost:3000/api/v1/statuses/113998819401746892
uri: http://localhost:3000/api/v1/statuses/115033992135793079
response:
body:
string: '{"id":"113998819401746892","created_at":"2025-02-13T21:58:58.626Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/113998819401746892","url":"http://localhost:3000/@mastodonpy_test/113998819401746892","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"text":"Toot!","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":1,"statuses_count":4,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
string: '{"id":"115033992135793079","created_at":"2025-08-15T17:37:01.018Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/115033992135793079","url":"http://localhost:3000/@mastodonpy_test/115033992135793079","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"text":"Toot!","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":1,"statuses_count":4,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
@ -189,14 +189,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"094c42abf41224471beaef8e98deec9c"
- W/"a278af605a78f4193f8d6cae0e8a05db"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.06, sql.active_record;dur=6.44, cache_generate.active_support;dur=2.98,
cache_write.active_support;dur=0.18, instantiation.active_record;dur=0.85,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=3.61,
render.active_model_serializers;dur=15.17, process_action.action_controller;dur=44.22
- cache_read.active_support;dur=0.05, sql.active_record;dur=7.43, cache_generate.active_support;dur=2.93,
cache_write.active_support;dur=0.19, instantiation.active_record;dur=0.73,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=4.67,
render.active_model_serializers;dur=13.41, process_action.action_controller;dur=45.82
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -208,11 +208,11 @@ interactions:
X-RateLimit-Remaining:
- '29'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.064900Z'
- '2025-08-15T18:00:00.490702Z'
X-Request-Id:
- f8e2597e-caa9-400e-8932-e37cddfd7b6b
- d0fe2f2c-8632-4ec0-b997-d830f550b8ea
X-Runtime:
- '0.059916'
- '0.066232'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Connection:
- keep-alive
User-Agent:
@ -27,10 +27,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.10, cache_generate.active_support;dur=0.94,
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.11, cache_generate.active_support;dur=0.93,
cache_write.active_support;dur=0.06, start_processing.action_controller;dur=0.00,
render.active_model_serializers;dur=0.04, halted_callback.action_controller;dur=0.00,
process_action.action_controller;dur=18.71
render.active_model_serializers;dur=0.03, halted_callback.action_controller;dur=0.00,
process_action.action_controller;dur=22.43
WWW-Authenticate:
- Bearer realm="Doorkeeper", error="invalid_token", error_description="The access
token is invalid"
@ -45,11 +45,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.502416Z'
- '2025-08-15T17:40:00.976786Z'
X-Request-Id:
- 18ebe5cc-eda5-40e1-95f8-5f063721a5cd
- 05db88d9-e8d0-4218-a1bc-836f2a52de62
X-Runtime:
- '0.032870'
- '0.043728'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -20,10 +20,10 @@ interactions:
uri: http://localhost:3000/api/v1/statuses
response:
body:
string: '{"id":"113998806821293282","created_at":"2025-02-13T21:55:46.663Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/113998806821293282","url":"http://localhost:3000/@mastodonpy_test/113998806821293282","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eToot!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
string: '{"id":"115033976338194256","created_at":"2025-08-15T17:32:59.966Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/115033976338194256","url":"http://localhost:3000/@mastodonpy_test/115033976338194256","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eToot!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
@ -34,14 +34,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"a8e357649f6d1759b176dc86942ce21b"
- W/"4ae337c0125f17dda5cf1125beb519d9"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.05, sql.active_record;dur=9.74, cache_generate.active_support;dur=2.75,
cache_write.active_support;dur=0.14, instantiation.active_record;dur=0.43,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=4.08,
render.active_model_serializers;dur=10.60, process_action.action_controller;dur=44.07
- cache_read.active_support;dur=0.09, sql.active_record;dur=14.32, cache_generate.active_support;dur=2.89,
cache_write.active_support;dur=0.12, instantiation.active_record;dur=0.47,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=5.63,
render.active_model_serializers;dur=10.53, process_action.action_controller;dur=51.57
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -51,13 +51,13 @@ interactions:
X-RateLimit-Limit:
- '300'
X-RateLimit-Remaining:
- '295'
- '294'
X-RateLimit-Reset:
- '2025-02-14T00:00:00.685040Z'
- '2025-08-15T18:00:00.992621Z'
X-Request-Id:
- 5f4a34c8-84ff-4303-8b2a-be9773e79731
- 5643e5e0-e9a3-415b-86b8-86b3d9e1ecd5
X-Runtime:
- '0.058434'
- '0.071134'
X-XSS-Protection:
- '0'
vary:
@ -71,7 +71,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -81,13 +81,13 @@ interactions:
User-Agent:
- tests/v311
method: DELETE
uri: http://localhost:3000/api/v1/statuses/113998806821293282
uri: http://localhost:3000/api/v1/statuses/115033976338194256
response:
body:
string: '{"id":"113998806821293282","created_at":"2025-02-13T21:55:46.663Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/113998806821293282","url":"http://localhost:3000/@mastodonpy_test/113998806821293282","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"text":"Toot!","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
string: '{"id":"115033976338194256","created_at":"2025-08-15T17:32:59.966Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/115033976338194256","url":"http://localhost:3000/@mastodonpy_test/115033976338194256","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"text":"Toot!","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
@ -98,14 +98,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"e209b577db6927c23781067494824166"
- W/"70d48c34e14341e1901b813875a51bf4"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.06, sql.active_record;dur=6.00, cache_generate.active_support;dur=2.86,
cache_write.active_support;dur=0.16, instantiation.active_record;dur=0.66,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=3.14,
render.active_model_serializers;dur=13.48, process_action.action_controller;dur=41.36
- cache_read.active_support;dur=0.05, sql.active_record;dur=7.04, cache_generate.active_support;dur=2.78,
cache_write.active_support;dur=0.14, instantiation.active_record;dur=0.69,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=4.33,
render.active_model_serializers;dur=12.59, process_action.action_controller;dur=45.14
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -117,11 +117,11 @@ interactions:
X-RateLimit-Remaining:
- '29'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.754350Z'
- '2025-08-15T18:00:00.069456Z'
X-Request-Id:
- 8672e931-9721-4862-8675-61f4a1867577
- 2d0f91fe-876c-424d-9bf1-98a779233c19
X-Runtime:
- '0.062999'
- '0.065019'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -20,10 +20,10 @@ interactions:
uri: http://localhost:3000/api/v1/statuses
response:
body:
string: '{"id":"113998806833452454","created_at":"2025-02-13T21:55:46.848Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/113998806833452454","url":"http://localhost:3000/@mastodonpy_test/113998806833452454","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eToot!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":0,"statuses_count":2,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
string: '{"id":"115033976352811630","created_at":"2025-08-15T17:33:00.189Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/115033976352811630","url":"http://localhost:3000/@mastodonpy_test/115033976352811630","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eToot!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":0,"statuses_count":2,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
@ -34,14 +34,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"53fd5c4c6a10601616833d7e34b4ceb8"
- W/"cd7db23f75073f3b7a63ebd6d28e3579"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.05, sql.active_record;dur=9.38, cache_generate.active_support;dur=2.72,
cache_write.active_support;dur=0.13, instantiation.active_record;dur=0.46,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=4.19,
render.active_model_serializers;dur=12.17, process_action.action_controller;dur=45.10
- cache_read.active_support;dur=0.05, sql.active_record;dur=14.05, cache_generate.active_support;dur=3.01,
cache_write.active_support;dur=0.14, instantiation.active_record;dur=0.47,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=5.95,
render.active_model_serializers;dur=10.87, process_action.action_controller;dur=52.26
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -51,13 +51,13 @@ interactions:
X-RateLimit-Limit:
- '300'
X-RateLimit-Remaining:
- '294'
- '293'
X-RateLimit-Reset:
- '2025-02-14T00:00:00.872315Z'
- '2025-08-15T18:00:00.216144Z'
X-Request-Id:
- 6ab2ac1c-f0b7-4f33-b1d2-b37f58407353
- 581d203d-fcaf-4a48-9ebe-736ba9ee24bd
X-Runtime:
- '0.059274'
- '0.072464'
X-XSS-Protection:
- '0'
vary:
@ -66,12 +66,12 @@ interactions:
code: 200
message: OK
- request:
body: status=Reply%21&in_reply_to_id=113998806833452454
body: status=Reply%21&in_reply_to_id=115033976352811630
headers:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -86,10 +86,10 @@ interactions:
uri: http://localhost:3000/api/v1/statuses
response:
body:
string: '{"id":"113998806839780561","created_at":"2025-02-13T21:55:46.943Z","in_reply_to_id":"113998806833452454","in_reply_to_account_id":"113998801242326861","sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/113998806839780561","url":"http://localhost:3000/@mastodonpy_test/113998806839780561","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eReply!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":0,"statuses_count":3,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
string: '{"id":"115033976360466009","created_at":"2025-08-15T17:33:00.304Z","in_reply_to_id":"115033976352811630","in_reply_to_account_id":"115033965771926537","sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/115033976360466009","url":"http://localhost:3000/@mastodonpy_test/115033976360466009","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eReply!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":0,"statuses_count":3,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
@ -100,14 +100,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"b49d10d15e3e00e2381eba8278ea6937"
- W/"ebb6766e3157ec6eb1889bde7575a1d3"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.05, sql.active_record;dur=10.44, cache_generate.active_support;dur=8.27,
cache_write.active_support;dur=0.16, instantiation.active_record;dur=0.65,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=3.93,
render.active_model_serializers;dur=16.27, process_action.action_controller;dur=52.66
- cache_read.active_support;dur=0.05, sql.active_record;dur=14.32, cache_generate.active_support;dur=2.84,
cache_write.active_support;dur=0.14, instantiation.active_record;dur=0.66,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=5.08,
render.active_model_serializers;dur=10.74, process_action.action_controller;dur=58.53
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -117,13 +117,13 @@ interactions:
X-RateLimit-Limit:
- '300'
X-RateLimit-Remaining:
- '293'
- '292'
X-RateLimit-Reset:
- '2025-02-14T00:00:00.972594Z'
- '2025-08-15T18:00:00.331256Z'
X-Request-Id:
- 866dda86-f01f-4443-8f67-dc514cc6fb47
- 7034b27f-2e18-46bb-89c7-75d614ee6b86
X-Runtime:
- '0.069030'
- '0.078431'
X-XSS-Protection:
- '0'
vary:
@ -137,7 +137,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -147,13 +147,13 @@ interactions:
User-Agent:
- tests/v311
method: DELETE
uri: http://localhost:3000/api/v1/statuses/113998806839780561
uri: http://localhost:3000/api/v1/statuses/115033976360466009
response:
body:
string: '{"id":"113998806839780561","created_at":"2025-02-13T21:55:46.943Z","in_reply_to_id":"113998806833452454","in_reply_to_account_id":"113998801242326861","sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/113998806839780561","url":"http://localhost:3000/@mastodonpy_test/113998806839780561","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"text":"Reply!","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":0,"statuses_count":2,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
string: '{"id":"115033976360466009","created_at":"2025-08-15T17:33:00.304Z","in_reply_to_id":"115033976352811630","in_reply_to_account_id":"115033965771926537","sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/115033976360466009","url":"http://localhost:3000/@mastodonpy_test/115033976360466009","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"text":"Reply!","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":0,"statuses_count":2,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
@ -164,14 +164,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"2cfd262bf1a68bde132f3cd4f5d07f0d"
- W/"6654f7778609fb4ce35d8e757fc32906"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.05, sql.active_record;dur=6.72, cache_generate.active_support;dur=3.14,
cache_write.active_support;dur=0.17, instantiation.active_record;dur=0.84,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=3.36,
render.active_model_serializers;dur=13.73, process_action.action_controller;dur=45.41
- cache_read.active_support;dur=0.05, sql.active_record;dur=7.27, cache_generate.active_support;dur=2.83,
cache_write.active_support;dur=0.16, instantiation.active_record;dur=0.65,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=4.57,
render.active_model_serializers;dur=20.16, process_action.action_controller;dur=51.67
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -183,11 +183,11 @@ interactions:
X-RateLimit-Remaining:
- '29'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.046800Z'
- '2025-08-15T18:00:00.411434Z'
X-Request-Id:
- 5e7089cb-3c65-4831-a73c-d89e13a4e3bd
- 8dba85af-55a8-4e5c-9a4f-a7a1a6f827f6
X-Runtime:
- '0.067796'
- '0.071548'
X-XSS-Protection:
- '0'
vary:
@ -201,7 +201,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -211,13 +211,13 @@ interactions:
User-Agent:
- tests/v311
method: DELETE
uri: http://localhost:3000/api/v1/statuses/113998806833452454
uri: http://localhost:3000/api/v1/statuses/115033976352811630
response:
body:
string: '{"id":"113998806833452454","created_at":"2025-02-13T21:55:46.848Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/113998806833452454","url":"http://localhost:3000/@mastodonpy_test/113998806833452454","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"text":"Toot!","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":0,"statuses_count":2,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
string: '{"id":"115033976352811630","created_at":"2025-08-15T17:33:00.189Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/115033976352811630","url":"http://localhost:3000/@mastodonpy_test/115033976352811630","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"text":"Toot!","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":0,"statuses_count":2,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
@ -228,14 +228,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"0570de5efff41b7d60f0145e3533973d"
- W/"92d5e7dc6f4afc4356260b37cfd38d5d"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.05, sql.active_record;dur=6.00, cache_generate.active_support;dur=3.05,
cache_write.active_support;dur=0.16, instantiation.active_record;dur=0.65,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=3.21,
render.active_model_serializers;dur=14.42, process_action.action_controller;dur=41.10
- cache_read.active_support;dur=0.06, sql.active_record;dur=7.66, cache_generate.active_support;dur=3.02,
cache_write.active_support;dur=0.18, instantiation.active_record;dur=0.98,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=4.45,
render.active_model_serializers;dur=15.14, process_action.action_controller;dur=49.44
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -247,11 +247,11 @@ interactions:
X-RateLimit-Remaining:
- '29'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.137479Z'
- '2025-08-15T18:00:00.527743Z'
X-Request-Id:
- 2391bc11-aea3-4ad8-a625-25b79b2b4be1
- a2f0c405-83e3-4efc-9e3d-e0d111edc25c
X-Runtime:
- '0.057635'
- '0.070482'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -20,10 +20,10 @@ interactions:
uri: http://localhost:3000/api/v1/statuses
response:
body:
string: '{"id":"113998806858718064","created_at":"2025-02-13T21:55:47.233Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/113998806858718064","url":"http://localhost:3000/@mastodonpy_test/113998806858718064","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eToot!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":0,"statuses_count":4,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
string: '{"id":"115033976384068212","created_at":"2025-08-15T17:33:00.666Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/115033976384068212","url":"http://localhost:3000/@mastodonpy_test/115033976384068212","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eToot!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":0,"statuses_count":3,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
@ -34,14 +34,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"f425229700d8c2853e965682d3b757de"
- W/"4833e4590d08703b95b2f0b63e9d5ae0"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.05, sql.active_record;dur=9.52, cache_generate.active_support;dur=2.95,
cache_write.active_support;dur=0.13, instantiation.active_record;dur=0.48,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=3.99,
render.active_model_serializers;dur=14.33, process_action.action_controller;dur=47.85
- cache_read.active_support;dur=0.06, sql.active_record;dur=14.91, cache_generate.active_support;dur=3.49,
cache_write.active_support;dur=0.15, instantiation.active_record;dur=0.67,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=5.74,
render.active_model_serializers;dur=12.23, process_action.action_controller;dur=57.93
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -51,13 +51,13 @@ interactions:
X-RateLimit-Limit:
- '300'
X-RateLimit-Remaining:
- '292'
- '291'
X-RateLimit-Reset:
- '2025-02-14T00:00:00.259065Z'
- '2025-08-15T18:00:00.695869Z'
X-Request-Id:
- 876fd85b-0efb-4f1d-90e4-c40b1a7611c0
- 98006b53-0223-45d4-b619-38c33da7f77d
X-Runtime:
- '0.062256'
- '0.077981'
X-XSS-Protection:
- '0'
vary:
@ -71,7 +71,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -81,15 +81,15 @@ interactions:
User-Agent:
- tests/v311
method: POST
uri: http://localhost:3000/api/v1/statuses/113998806858718064/reblog
uri: http://localhost:3000/api/v1/statuses/115033976384068212/reblog
response:
body:
string: '{"id":"113998806865041662","created_at":"2025-02-13T21:55:47.332Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":null,"uri":"http://localhost:3000/users/mastodonpy_test/statuses/113998806865041662/activity","url":"http://localhost:3000/users/mastodonpy_test/statuses/113998806865041662/activity","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":true,"muted":false,"bookmarked":false,"content":"","filtered":[],"reblog":{"id":"113998806858718064","created_at":"2025-02-13T21:55:47.233Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/113998806858718064","url":"http://localhost:3000/@mastodonpy_test/113998806858718064","replies_count":0,"reblogs_count":1,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":true,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eToot!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":0,"statuses_count":4,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null},"application":null,"account":{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":0,"statuses_count":4,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
string: '{"id":"115033976391628190","created_at":"2025-08-15T17:33:00.781Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":null,"uri":"http://localhost:3000/users/mastodonpy_test/statuses/115033976391628190/activity","url":"http://localhost:3000/users/mastodonpy_test/statuses/115033976391628190/activity","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":true,"muted":false,"bookmarked":false,"content":"","filtered":[],"reblog":{"id":"115033976384068212","created_at":"2025-08-15T17:33:00.666Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/115033976384068212","url":"http://localhost:3000/@mastodonpy_test/115033976384068212","replies_count":0,"reblogs_count":1,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":true,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eToot!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":0,"statuses_count":4,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null},"application":null,"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":0,"statuses_count":4,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
@ -100,15 +100,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"0ac51be867548a5d92ed84452db35604"
- W/"799d63aa48a9cf19be402956abcb9538"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.13, sql.active_record;dur=13.33, cache_generate.active_support;dur=2.97,
cache_write.active_support;dur=0.14, instantiation.active_record;dur=0.69,
- cache_read.active_support;dur=0.13, sql.active_record;dur=19.95, cache_generate.active_support;dur=3.08,
cache_write.active_support;dur=0.15, instantiation.active_record;dur=0.88,
start_processing.action_controller;dur=0.00, unpermitted_parameters.action_controller;dur=0.00,
transaction.active_record;dur=7.34, cache_fetch_hit.active_support;dur=0.00,
render.active_model_serializers;dur=21.29, process_action.action_controller;dur=61.14
transaction.active_record;dur=10.82, cache_fetch_hit.active_support;dur=0.00,
render.active_model_serializers;dur=25.51, process_action.action_controller;dur=75.73
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -118,13 +118,13 @@ interactions:
X-RateLimit-Limit:
- '300'
X-RateLimit-Remaining:
- '292'
- '291'
X-RateLimit-Reset:
- '2025-02-14T00:00:00.367424Z'
- '2025-08-15T18:00:00.828195Z'
X-Request-Id:
- 34ab7cf2-6b1a-4dd4-89dd-a7a8b4ffb6fc
- 3e1a92b8-eb06-433d-8cc1-249e63811c2e
X-Runtime:
- '0.077108'
- '0.095605'
X-XSS-Protection:
- '0'
vary:
@ -138,7 +138,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -148,15 +148,15 @@ interactions:
User-Agent:
- tests/v311
method: DELETE
uri: http://localhost:3000/api/v1/statuses/113998806865041662
uri: http://localhost:3000/api/v1/statuses/115033976391628190
response:
body:
string: '{"id":"113998806865041662","created_at":"2025-02-13T21:55:47.332Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":null,"uri":"http://localhost:3000/users/mastodonpy_test/statuses/113998806865041662/activity","url":"http://localhost:3000/users/mastodonpy_test/statuses/113998806865041662/activity","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"text":"","filtered":[],"reblog":{"id":"113998806858718064","created_at":"2025-02-13T21:55:47.233Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/113998806858718064","url":"http://localhost:3000/@mastodonpy_test/113998806858718064","replies_count":0,"reblogs_count":1,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"text":"Toot!","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":0,"statuses_count":4,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null},"application":null,"account":{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":0,"statuses_count":3,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
string: '{"id":"115033976391628190","created_at":"2025-08-15T17:33:00.781Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":null,"uri":"http://localhost:3000/users/mastodonpy_test/statuses/115033976391628190/activity","url":"http://localhost:3000/users/mastodonpy_test/statuses/115033976391628190/activity","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"text":"","filtered":[],"reblog":{"id":"115033976384068212","created_at":"2025-08-15T17:33:00.666Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/115033976384068212","url":"http://localhost:3000/@mastodonpy_test/115033976384068212","replies_count":0,"reblogs_count":1,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"text":"Toot!","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":0,"statuses_count":4,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null},"application":null,"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":0,"statuses_count":3,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
@ -167,15 +167,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"c75638e03c336688e4212766ac4e3044"
- W/"a448864c6212d37926f6284bdfb120a0"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.12, sql.active_record;dur=6.81, cache_generate.active_support;dur=2.74,
cache_write.active_support;dur=0.14, instantiation.active_record;dur=0.99,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=3.31,
cache_fetch_hit.active_support;dur=0.00, render.active_model_serializers;dur=28.86,
process_action.action_controller;dur=55.07
- cache_read.active_support;dur=0.13, sql.active_record;dur=8.37, cache_generate.active_support;dur=2.86,
cache_write.active_support;dur=0.15, instantiation.active_record;dur=1.32,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=4.67,
cache_fetch_hit.active_support;dur=0.00, render.active_model_serializers;dur=28.35,
process_action.action_controller;dur=59.82
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -187,11 +187,11 @@ interactions:
X-RateLimit-Remaining:
- '29'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.455415Z'
- '2025-08-15T18:00:00.936425Z'
X-Request-Id:
- 9b7a900c-69fa-45e7-8bc3-a2b4dfa3bbe1
- 35a91bde-00a3-433d-b30a-ef8aedeb51b7
X-Runtime:
- '0.069200'
- '0.079543'
X-XSS-Protection:
- '0'
vary:
@ -205,7 +205,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -215,13 +215,13 @@ interactions:
User-Agent:
- tests/v311
method: DELETE
uri: http://localhost:3000/api/v1/statuses/113998806858718064
uri: http://localhost:3000/api/v1/statuses/115033976384068212
response:
body:
string: '{"id":"113998806858718064","created_at":"2025-02-13T21:55:47.233Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/113998806858718064","url":"http://localhost:3000/@mastodonpy_test/113998806858718064","replies_count":0,"reblogs_count":1,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"text":"Toot!","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":0,"statuses_count":3,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
string: '{"id":"115033976384068212","created_at":"2025-08-15T17:33:00.666Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/115033976384068212","url":"http://localhost:3000/@mastodonpy_test/115033976384068212","replies_count":0,"reblogs_count":1,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"text":"Toot!","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":0,"statuses_count":3,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
@ -232,14 +232,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"a82bfda5165999fafd34c15ee7fabab4"
- W/"e49435aefbd2d0243f2ee79f77fabc37"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.06, sql.active_record;dur=6.28, cache_generate.active_support;dur=7.07,
cache_write.active_support;dur=0.18, instantiation.active_record;dur=0.80,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=3.45,
render.active_model_serializers;dur=17.64, process_action.action_controller;dur=55.07
- cache_read.active_support;dur=0.05, sql.active_record;dur=7.32, cache_generate.active_support;dur=2.76,
cache_write.active_support;dur=0.15, instantiation.active_record;dur=0.75,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=4.64,
render.active_model_serializers;dur=13.94, process_action.action_controller;dur=45.68
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -251,11 +251,11 @@ interactions:
X-RateLimit-Remaining:
- '29'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.591153Z'
- '2025-08-15T18:00:00.084662Z'
X-Request-Id:
- db3cd4fc-03b5-4800-8c33-b28122f0edc5
- 77d5db65-34a0-4db4-805b-0525d0b53485
X-Runtime:
- '0.071048'
- '0.065536'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -16,7 +16,7 @@ interactions:
uri: http://localhost:3000/api/v2/instance/
response:
body:
string: '{"domain":"localhost:3000","title":"Mastodon","version":"4.3.0","source_url":"https://github.com/mastodon/mastodon","description":"","usage":{"users":{"active_month":0}},"thumbnail":{"url":"http://localhost:3000/packs/media/images/preview-6399aebd96ccf025654e2977454f168f.png"},"icon":[{"src":"http://localhost:3000/packs/media/icons/android-chrome-36x36-4c61fdb42936428af85afdbf8c6a45a8.png","size":"36x36"},{"src":"http://localhost:3000/packs/media/icons/android-chrome-48x48-2027aead76dc906c981043d658a8258d.png","size":"48x48"},{"src":"http://localhost:3000/packs/media/icons/android-chrome-72x72-799d90b81f5b28cea7355a0c0b356381.png","size":"72x72"},{"src":"http://localhost:3000/packs/media/icons/android-chrome-96x96-c2dfcfa1268c56e59edddfe20d818b91.png","size":"96x96"},{"src":"http://localhost:3000/packs/media/icons/android-chrome-144x144-ff3110f7772743bdd0c1c47fb7b2d4e0.png","size":"144x144"},{"src":"http://localhost:3000/packs/media/icons/android-chrome-192x192-eddc1ed540e97b926202b7b857989d60.png","size":"192x192"},{"src":"http://localhost:3000/packs/media/icons/android-chrome-256x256-7b2b43926019259f7c9ddee627d80a0f.png","size":"256x256"},{"src":"http://localhost:3000/packs/media/icons/android-chrome-384x384-72068ed50b02828fc505a8d69b321dea.png","size":"384x384"},{"src":"http://localhost:3000/packs/media/icons/android-chrome-512x512-ccb53c9fcbb5f61bf741cc54998318f0.png","size":"512x512"}],"languages":["en"],"configuration":{"urls":{"streaming":"ws://localhost:4000","status":null},"vapid":{"public_key":"BE1WVtJ4TtrCv7gVo33aa4Hgc6mtg2W6yJlGGOdj2si5BlgCm8HpmqkdaX5y5ZiPyWcBBb3V0sDOa4GI2r6EylU="},"accounts":{"max_featured_tags":10,"max_pinned_statuses":5},"statuses":{"max_characters":500,"max_media_attachments":4,"characters_reserved_per_url":23},"media_attachments":{"supported_mime_types":["image/jpeg","image/png","image/gif","image/heic","image/heif","image/webp","image/avif","video/webm","video/mp4","video/quicktime","video/ogg","audio/wave","audio/wav","audio/x-wav","audio/x-pn-wave","audio/vnd.wave","audio/ogg","audio/vorbis","audio/mpeg","audio/mp3","audio/webm","audio/flac","audio/aac","audio/m4a","audio/x-m4a","audio/mp4","audio/3gpp","video/x-ms-asf"],"image_size_limit":16777216,"image_matrix_limit":33177600,"video_size_limit":103809024,"video_frame_rate_limit":120,"video_matrix_limit":8294400},"polls":{"max_options":4,"max_characters_per_option":50,"min_expiration":300,"max_expiration":2629746},"translation":{"enabled":false}},"registrations":{"enabled":true,"approval_required":false,"message":null,"url":null},"api_versions":{"mastodon":2},"contact":{"email":"","account":null},"rules":[]}'
string: '{"domain":"localhost:3000","title":"Mastodon","version":"4.3.0","source_url":"https://github.com/mastodon/mastodon","description":"","usage":{"users":{"active_month":0}},"thumbnail":{"url":"http://localhost:3000/packs/media/images/preview-6399aebd96ccf025654e2977454f168f.png"},"icon":[{"src":"http://localhost:3000/packs/media/icons/android-chrome-36x36-4c61fdb42936428af85afdbf8c6a45a8.png","size":"36x36"},{"src":"http://localhost:3000/packs/media/icons/android-chrome-48x48-2027aead76dc906c981043d658a8258d.png","size":"48x48"},{"src":"http://localhost:3000/packs/media/icons/android-chrome-72x72-799d90b81f5b28cea7355a0c0b356381.png","size":"72x72"},{"src":"http://localhost:3000/packs/media/icons/android-chrome-96x96-c2dfcfa1268c56e59edddfe20d818b91.png","size":"96x96"},{"src":"http://localhost:3000/packs/media/icons/android-chrome-144x144-ff3110f7772743bdd0c1c47fb7b2d4e0.png","size":"144x144"},{"src":"http://localhost:3000/packs/media/icons/android-chrome-192x192-eddc1ed540e97b926202b7b857989d60.png","size":"192x192"},{"src":"http://localhost:3000/packs/media/icons/android-chrome-256x256-7b2b43926019259f7c9ddee627d80a0f.png","size":"256x256"},{"src":"http://localhost:3000/packs/media/icons/android-chrome-384x384-72068ed50b02828fc505a8d69b321dea.png","size":"384x384"},{"src":"http://localhost:3000/packs/media/icons/android-chrome-512x512-ccb53c9fcbb5f61bf741cc54998318f0.png","size":"512x512"}],"languages":["en"],"configuration":{"urls":{"streaming":"ws://localhost:4000","status":null},"vapid":{"public_key":"BPtNmLhj_FlqUHpabUpI4QNoR3B3CZQcHYvYBR5FvoLgKn7M5bsjsYqaVYxJPyGMMUS_FLtlh6zbvjrx-QwLIxk="},"accounts":{"max_featured_tags":10,"max_pinned_statuses":5},"statuses":{"max_characters":500,"max_media_attachments":4,"characters_reserved_per_url":23},"media_attachments":{"supported_mime_types":["image/jpeg","image/png","image/gif","image/heic","image/heif","image/webp","image/avif","video/webm","video/mp4","video/quicktime","video/ogg","audio/wave","audio/wav","audio/x-wav","audio/x-pn-wave","audio/vnd.wave","audio/ogg","audio/vorbis","audio/mpeg","audio/mp3","audio/webm","audio/flac","audio/aac","audio/m4a","audio/x-m4a","audio/mp4","audio/3gpp","video/x-ms-asf"],"image_size_limit":16777216,"image_matrix_limit":33177600,"video_size_limit":103809024,"video_frame_rate_limit":120,"video_matrix_limit":8294400},"polls":{"max_options":4,"max_characters_per_option":50,"min_expiration":300,"max_expiration":2629746},"translation":{"enabled":false}},"registrations":{"enabled":true,"approval_required":false,"message":null,"url":null},"api_versions":{"mastodon":2},"contact":{"email":"","account":null},"rules":[]}'
headers:
Cache-Control:
- max-age=300, public, stale-while-revalidate=30, stale-if-error=86400
@ -27,16 +27,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- Thu, 13 Feb 2025 21:55:48 GMT
- Fri, 15 Aug 2025 17:33:01 GMT
ETag:
- W/"2e5f5448affb553608ca382c19e561a7"
- W/"f801e807ef6a5597580ee42c1f893ea7"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.17, sql.active_record;dur=1.37, cache_generate.active_support;dur=6.75,
cache_write.active_support;dur=0.44, instantiation.active_record;dur=0.17,
start_processing.action_controller;dur=0.01, cache_fetch_hit.active_support;dur=0.00,
render.active_model_serializers;dur=21.45, process_action.action_controller;dur=39.67
- cache_read.active_support;dur=0.16, sql.active_record;dur=1.52, cache_generate.active_support;dur=7.25,
cache_write.active_support;dur=0.49, instantiation.active_record;dur=0.18,
start_processing.action_controller;dur=0.00, cache_fetch_hit.active_support;dur=0.00,
render.active_model_serializers;dur=20.71, process_action.action_controller;dur=42.70
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -48,11 +48,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.242361Z'
- '2025-08-15T17:35:00.804383Z'
X-Request-Id:
- 27ec870a-355b-468b-bec2-8708363b3e26
- 4761f750-c955-4b32-bffa-d5853f49259c
X-Runtime:
- '0.071815'
- '0.065127'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -16,7 +16,7 @@ interactions:
uri: http://localhost:3000/api/v1/instance/activity
response:
body:
string: '[{"week":"1739483748","statuses":"6","logins":"4","registrations":"4"},{"week":"1738878948","statuses":"0","logins":"0","registrations":"0"},{"week":"1738274148","statuses":"0","logins":"0","registrations":"0"},{"week":"1737669348","statuses":"0","logins":"0","registrations":"0"},{"week":"1737064548","statuses":"0","logins":"0","registrations":"0"},{"week":"1736459748","statuses":"0","logins":"0","registrations":"0"},{"week":"1735854948","statuses":"0","logins":"0","registrations":"0"},{"week":"1735250148","statuses":"0","logins":"0","registrations":"0"},{"week":"1734645348","statuses":"0","logins":"0","registrations":"0"},{"week":"1734040548","statuses":"0","logins":"0","registrations":"0"},{"week":"1733435748","statuses":"0","logins":"0","registrations":"0"},{"week":"1732830948","statuses":"0","logins":"0","registrations":"0"}]'
string: '[{"week":"1755279181","statuses":"7","logins":"4","registrations":"4"},{"week":"1754674381","statuses":"0","logins":"0","registrations":"0"},{"week":"1754069581","statuses":"0","logins":"0","registrations":"0"},{"week":"1753464781","statuses":"0","logins":"0","registrations":"0"},{"week":"1752859981","statuses":"0","logins":"0","registrations":"0"},{"week":"1752255181","statuses":"0","logins":"0","registrations":"0"},{"week":"1751650381","statuses":"0","logins":"0","registrations":"0"},{"week":"1751045581","statuses":"0","logins":"0","registrations":"0"},{"week":"1750440781","statuses":"0","logins":"0","registrations":"0"},{"week":"1749835981","statuses":"0","logins":"0","registrations":"0"},{"week":"1749231181","statuses":"0","logins":"0","registrations":"0"},{"week":"1748626381","statuses":"0","logins":"0","registrations":"0"}]'
headers:
Cache-Control:
- max-age=300, public, stale-while-revalidate=30, stale-if-error=86400
@ -27,16 +27,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- Thu, 13 Feb 2025 21:55:48 GMT
- Fri, 15 Aug 2025 17:33:01 GMT
ETag:
- W/"28f9e3f1c9f323d8ca533d7b272353ae"
- W/"eb9b4e0be1e0b4fd28ae9c5308f1d1f6"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=0.58, cache_generate.active_support;dur=1.45,
cache_write.active_support;dur=0.16, instantiation.active_record;dur=0.23,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.06,
process_action.action_controller;dur=23.83
- cache_read.active_support;dur=0.05, sql.active_record;dur=0.80, cache_generate.active_support;dur=1.94,
cache_write.active_support;dur=0.16, instantiation.active_record;dur=0.26,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.07,
process_action.action_controller;dur=32.59
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -48,11 +48,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.317656Z'
- '2025-08-15T17:35:00.949172Z'
X-Request-Id:
- 205585a1-712a-490c-9170-95724d82580d
- 5fdf8592-4d23-4c54-8845-c87482cea448
X-Runtime:
- '0.041015'
- '0.055250'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -29,10 +29,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.39, sql.active_record;dur=7.71, cache_generate.active_support;dur=12.49,
cache_write.active_support;dur=0.30, instantiation.active_record;dur=0.56,
start_processing.action_controller;dur=0.01, cache_fetch_hit.active_support;dur=0.00,
halted_callback.action_controller;dur=0.00, process_action.action_controller;dur=29.15
- cache_read.active_support;dur=0.06, sql.active_record;dur=0.60, cache_generate.active_support;dur=1.50,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.27,
start_processing.action_controller;dur=0.00, cache_fetch_hit.active_support;dur=0.00,
halted_callback.action_controller;dur=0.00, process_action.action_controller;dur=22.01
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -44,11 +44,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-15T16:30:00.848599Z'
- '2025-08-15T17:35:00.970977Z'
X-Request-Id:
- f2cc5be5-b0e9-447b-89d4-56e2eac8d374
- d669946c-d628-4efb-b9b1-b1840fab3456
X-Runtime:
- '0.115118'
- '0.043400'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -27,16 +27,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- Sat, 15 Feb 2025 15:11:19 GMT
- Fri, 15 Aug 2025 17:33:01 GMT
ETag:
- W/"a7feb2b8d6c676e926cca06600860589"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.07, sql.active_record;dur=2.98, cache_generate.active_support;dur=7.75,
cache_write.active_support;dur=0.17, instantiation.active_record;dur=0.23,
start_processing.action_controller;dur=0.01, render.active_model_serializers;dur=0.38,
process_action.action_controller;dur=23.00
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.41, cache_generate.active_support;dur=0.95,
cache_write.active_support;dur=0.09, instantiation.active_record;dur=0.17,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.22,
process_action.action_controller;dur=22.36
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -48,11 +48,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-15T15:15:00.307003Z'
- '2025-08-15T17:35:00.892675Z'
X-Request-Id:
- 5f2a511b-6332-44d1-b1c6-bc29882cb543
- 84e3f705-669b-4566-9db5-2d231d54f9e5
X-Runtime:
- '0.067181'
- '0.045507'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -16,26 +16,116 @@ interactions:
uri: http://localhost:3000/api/v1/instance/languages
response:
body:
string: "[{\"code\":\"aa\",\"name\":\"Afar\"},{\"code\":\"ab\",\"name\":\"Abkhaz\"},{\"code\":\"ae\",\"name\":\"Avestan\"},{\"code\":\"af\",\"name\":\"Afrikaans\"},{\"code\":\"ak\",\"name\":\"Akan\"},{\"code\":\"am\",\"name\":\"Amharic\"},{\"code\":\"an\",\"name\":\"Aragonese\"},{\"code\":\"ar\",\"name\":\"Arabic\"},{\"code\":\"as\",\"name\":\"Assamese\"},{\"code\":\"av\",\"name\":\"Avaric\"},{\"code\":\"ay\",\"name\":\"Aymara\"},{\"code\":\"az\",\"name\":\"Azerbaijani\"},{\"code\":\"ba\",\"name\":\"Bashkir\"},{\"code\":\"be\",\"name\":\"Belarusian\"},{\"code\":\"bg\",\"name\":\"Bulgarian\"},{\"code\":\"bh\",\"name\":\"Bihari\"},{\"code\":\"bi\",\"name\":\"Bislama\"},{\"code\":\"bm\",\"name\":\"Bambara\"},{\"code\":\"bn\",\"name\":\"Bengali\"},{\"code\":\"bo\",\"name\":\"Tibetan\"},{\"code\":\"br\",\"name\":\"Breton\"},{\"code\":\"bs\",\"name\":\"Bosnian\"},{\"code\":\"ca\",\"name\":\"Catalan\"},{\"code\":\"ce\",\"name\":\"Chechen\"},{\"code\":\"ch\",\"name\":\"Chamorro\"},{\"code\":\"co\",\"name\":\"Corsican\"},{\"code\":\"cr\",\"name\":\"Cree\"},{\"code\":\"cs\",\"name\":\"Czech\"},{\"code\":\"cu\",\"name\":\"Old
Church Slavonic\"},{\"code\":\"cv\",\"name\":\"Chuvash\"},{\"code\":\"cy\",\"name\":\"Welsh\"},{\"code\":\"da\",\"name\":\"Danish\"},{\"code\":\"de\",\"name\":\"German\"},{\"code\":\"dv\",\"name\":\"Divehi\"},{\"code\":\"dz\",\"name\":\"Dzongkha\"},{\"code\":\"ee\",\"name\":\"Ewe\"},{\"code\":\"el\",\"name\":\"Greek\"},{\"code\":\"en\",\"name\":\"English\"},{\"code\":\"eo\",\"name\":\"Esperanto\"},{\"code\":\"es\",\"name\":\"Spanish\"},{\"code\":\"et\",\"name\":\"Estonian\"},{\"code\":\"eu\",\"name\":\"Basque\"},{\"code\":\"fa\",\"name\":\"Persian\"},{\"code\":\"ff\",\"name\":\"Fula\"},{\"code\":\"fi\",\"name\":\"Finnish\"},{\"code\":\"fj\",\"name\":\"Fijian\"},{\"code\":\"fo\",\"name\":\"Faroese\"},{\"code\":\"fr\",\"name\":\"French\"},{\"code\":\"fy\",\"name\":\"Western
Frisian\"},{\"code\":\"ga\",\"name\":\"Irish\"},{\"code\":\"gd\",\"name\":\"Scottish
Gaelic\"},{\"code\":\"gl\",\"name\":\"Galician\"},{\"code\":\"gu\",\"name\":\"Gujarati\"},{\"code\":\"gv\",\"name\":\"Manx\"},{\"code\":\"ha\",\"name\":\"Hausa\"},{\"code\":\"he\",\"name\":\"Hebrew\"},{\"code\":\"hi\",\"name\":\"Hindi\"},{\"code\":\"ho\",\"name\":\"Hiri
Motu\"},{\"code\":\"hr\",\"name\":\"Croatian\"},{\"code\":\"ht\",\"name\":\"Haitian\"},{\"code\":\"hu\",\"name\":\"Hungarian\"},{\"code\":\"hy\",\"name\":\"Armenian\"},{\"code\":\"hz\",\"name\":\"Herero\"},{\"code\":\"ia\",\"name\":\"Interlingua\"},{\"code\":\"id\",\"name\":\"Indonesian\"},{\"code\":\"ie\",\"name\":\"Interlingue\"},{\"code\":\"ig\",\"name\":\"Igbo\"},{\"code\":\"ii\",\"name\":\"Nuosu\"},{\"code\":\"ik\",\"name\":\"Inupiaq\"},{\"code\":\"io\",\"name\":\"Ido\"},{\"code\":\"is\",\"name\":\"Icelandic\"},{\"code\":\"it\",\"name\":\"Italian\"},{\"code\":\"iu\",\"name\":\"Inuktitut\"},{\"code\":\"ja\",\"name\":\"Japanese\"},{\"code\":\"jv\",\"name\":\"Javanese\"},{\"code\":\"ka\",\"name\":\"Georgian\"},{\"code\":\"kg\",\"name\":\"Kongo\"},{\"code\":\"ki\",\"name\":\"Kikuyu\"},{\"code\":\"kj\",\"name\":\"Kwanyama\"},{\"code\":\"kk\",\"name\":\"Kazakh\"},{\"code\":\"kl\",\"name\":\"Kalaallisut\"},{\"code\":\"km\",\"name\":\"Khmer\"},{\"code\":\"kn\",\"name\":\"Kannada\"},{\"code\":\"ko\",\"name\":\"Korean\"},{\"code\":\"kr\",\"name\":\"Kanuri\"},{\"code\":\"ks\",\"name\":\"Kashmiri\"},{\"code\":\"ku\",\"name\":\"Kurmanji
(Kurdish)\"},{\"code\":\"kv\",\"name\":\"Komi\"},{\"code\":\"kw\",\"name\":\"Cornish\"},{\"code\":\"ky\",\"name\":\"Kyrgyz\"},{\"code\":\"la\",\"name\":\"Latin\"},{\"code\":\"lb\",\"name\":\"Luxembourgish\"},{\"code\":\"lg\",\"name\":\"Ganda\"},{\"code\":\"li\",\"name\":\"Limburgish\"},{\"code\":\"ln\",\"name\":\"Lingala\"},{\"code\":\"lo\",\"name\":\"Lao\"},{\"code\":\"lt\",\"name\":\"Lithuanian\"},{\"code\":\"lu\",\"name\":\"Luba-Katanga\"},{\"code\":\"lv\",\"name\":\"Latvian\"},{\"code\":\"mg\",\"name\":\"Malagasy\"},{\"code\":\"mh\",\"name\":\"Marshallese\"},{\"code\":\"mi\",\"name\":\"M\u0101ori\"},{\"code\":\"mk\",\"name\":\"Macedonian\"},{\"code\":\"ml\",\"name\":\"Malayalam\"},{\"code\":\"mn\",\"name\":\"Mongolian\"},{\"code\":\"mr\",\"name\":\"Marathi\"},{\"code\":\"ms\",\"name\":\"Malay\"},{\"code\":\"ms-Arab\",\"name\":\"Jawi
Malay\"},{\"code\":\"mt\",\"name\":\"Maltese\"},{\"code\":\"my\",\"name\":\"Burmese\"},{\"code\":\"na\",\"name\":\"Nauru\"},{\"code\":\"nb\",\"name\":\"Norwegian
Bokm\xE5l\"},{\"code\":\"nd\",\"name\":\"Northern Ndebele\"},{\"code\":\"ne\",\"name\":\"Nepali\"},{\"code\":\"ng\",\"name\":\"Ndonga\"},{\"code\":\"nl\",\"name\":\"Dutch\"},{\"code\":\"nn\",\"name\":\"Norwegian
Nynorsk\"},{\"code\":\"no\",\"name\":\"Norwegian\"},{\"code\":\"nr\",\"name\":\"Southern
Ndebele\"},{\"code\":\"nv\",\"name\":\"Navajo\"},{\"code\":\"ny\",\"name\":\"Chichewa\"},{\"code\":\"oc\",\"name\":\"Occitan\"},{\"code\":\"oj\",\"name\":\"Ojibwe\"},{\"code\":\"om\",\"name\":\"Oromo\"},{\"code\":\"or\",\"name\":\"Oriya\"},{\"code\":\"os\",\"name\":\"Ossetian\"},{\"code\":\"pa\",\"name\":\"Punjabi\"},{\"code\":\"pi\",\"name\":\"P\u0101li\"},{\"code\":\"pl\",\"name\":\"Polish\"},{\"code\":\"ps\",\"name\":\"Pashto\"},{\"code\":\"pt\",\"name\":\"Portuguese\"},{\"code\":\"qu\",\"name\":\"Quechua\"},{\"code\":\"rm\",\"name\":\"Romansh\"},{\"code\":\"rn\",\"name\":\"Kirundi\"},{\"code\":\"ro\",\"name\":\"Romanian\"},{\"code\":\"ru\",\"name\":\"Russian\"},{\"code\":\"rw\",\"name\":\"Kinyarwanda\"},{\"code\":\"sa\",\"name\":\"Sanskrit\"},{\"code\":\"sc\",\"name\":\"Sardinian\"},{\"code\":\"sd\",\"name\":\"Sindhi\"},{\"code\":\"se\",\"name\":\"Northern
Sami\"},{\"code\":\"sg\",\"name\":\"Sango\"},{\"code\":\"si\",\"name\":\"Sinhala\"},{\"code\":\"sk\",\"name\":\"Slovak\"},{\"code\":\"sl\",\"name\":\"Slovenian\"},{\"code\":\"sn\",\"name\":\"Shona\"},{\"code\":\"so\",\"name\":\"Somali\"},{\"code\":\"sq\",\"name\":\"Albanian\"},{\"code\":\"sr\",\"name\":\"Serbian\"},{\"code\":\"ss\",\"name\":\"Swati\"},{\"code\":\"st\",\"name\":\"Southern
Sotho\"},{\"code\":\"su\",\"name\":\"Sundanese\"},{\"code\":\"sv\",\"name\":\"Swedish\"},{\"code\":\"sw\",\"name\":\"Swahili\"},{\"code\":\"ta\",\"name\":\"Tamil\"},{\"code\":\"te\",\"name\":\"Telugu\"},{\"code\":\"tg\",\"name\":\"Tajik\"},{\"code\":\"th\",\"name\":\"Thai\"},{\"code\":\"ti\",\"name\":\"Tigrinya\"},{\"code\":\"tk\",\"name\":\"Turkmen\"},{\"code\":\"tl\",\"name\":\"Tagalog\"},{\"code\":\"tn\",\"name\":\"Tswana\"},{\"code\":\"to\",\"name\":\"Tonga\"},{\"code\":\"tr\",\"name\":\"Turkish\"},{\"code\":\"ts\",\"name\":\"Tsonga\"},{\"code\":\"tt\",\"name\":\"Tatar\"},{\"code\":\"tw\",\"name\":\"Twi\"},{\"code\":\"ty\",\"name\":\"Tahitian\"},{\"code\":\"ug\",\"name\":\"Uyghur\"},{\"code\":\"uk\",\"name\":\"Ukrainian\"},{\"code\":\"ur\",\"name\":\"Urdu\"},{\"code\":\"uz\",\"name\":\"Uzbek\"},{\"code\":\"ve\",\"name\":\"Venda\"},{\"code\":\"vi\",\"name\":\"Vietnamese\"},{\"code\":\"vo\",\"name\":\"Volap\xFCk\"},{\"code\":\"wa\",\"name\":\"Walloon\"},{\"code\":\"wo\",\"name\":\"Wolof\"},{\"code\":\"xh\",\"name\":\"Xhosa\"},{\"code\":\"yi\",\"name\":\"Yiddish\"},{\"code\":\"yo\",\"name\":\"Yoruba\"},{\"code\":\"za\",\"name\":\"Zhuang\"},{\"code\":\"zh\",\"name\":\"Chinese\"},{\"code\":\"zu\",\"name\":\"Zulu\"},{\"code\":\"zh-CN\",\"name\":\"Chinese
(China)\"},{\"code\":\"zh-HK\",\"name\":\"Chinese (Hong Kong)\"},{\"code\":\"zh-TW\",\"name\":\"Chinese
(Taiwan)\"},{\"code\":\"zh-YUE\",\"name\":\"Cantonese\"},{\"code\":\"ast\",\"name\":\"Asturian\"},{\"code\":\"chr\",\"name\":\"Cherokee\"},{\"code\":\"ckb\",\"name\":\"Sorani
(Kurdish)\"},{\"code\":\"cnr\",\"name\":\"Montenegrin\"},{\"code\":\"csb\",\"name\":\"Kashubian\"},{\"code\":\"jbo\",\"name\":\"Lojban\"},{\"code\":\"kab\",\"name\":\"Kabyle\"},{\"code\":\"ldn\",\"name\":\"L\xE1adan\"},{\"code\":\"lfn\",\"name\":\"Lingua
Franca Nova\"},{\"code\":\"moh\",\"name\":\"Mohawk\"},{\"code\":\"nds\",\"name\":\"Low
German\"},{\"code\":\"pdc\",\"name\":\"Pennsylvania Dutch\"},{\"code\":\"sco\",\"name\":\"Scots\"},{\"code\":\"sma\",\"name\":\"Southern
Sami\"},{\"code\":\"smj\",\"name\":\"Lule Sami\"},{\"code\":\"szl\",\"name\":\"Silesian\"},{\"code\":\"tok\",\"name\":\"Toki
Pona\"},{\"code\":\"vai\",\"name\":\"Vai\"},{\"code\":\"xal\",\"name\":\"Kalmyk\"},{\"code\":\"zba\",\"name\":\"Balaibalan\"},{\"code\":\"zgh\",\"name\":\"Standard
Moroccan Tamazight\"}]"
string: "[{\"code\":\"aa\",\"name\":\"Afar\"},{\"code\":\"ab\",\"name\":\"Abkhaz\"\
},{\"code\":\"ae\",\"name\":\"Avestan\"},{\"code\":\"af\",\"name\":\"Afrikaans\"\
},{\"code\":\"ak\",\"name\":\"Akan\"},{\"code\":\"am\",\"name\":\"Amharic\"\
},{\"code\":\"an\",\"name\":\"Aragonese\"},{\"code\":\"ar\",\"name\":\"Arabic\"\
},{\"code\":\"as\",\"name\":\"Assamese\"},{\"code\":\"av\",\"name\":\"Avaric\"\
},{\"code\":\"ay\",\"name\":\"Aymara\"},{\"code\":\"az\",\"name\":\"Azerbaijani\"\
},{\"code\":\"ba\",\"name\":\"Bashkir\"},{\"code\":\"be\",\"name\":\"Belarusian\"\
},{\"code\":\"bg\",\"name\":\"Bulgarian\"},{\"code\":\"bh\",\"name\":\"Bihari\"\
},{\"code\":\"bi\",\"name\":\"Bislama\"},{\"code\":\"bm\",\"name\":\"Bambara\"\
},{\"code\":\"bn\",\"name\":\"Bengali\"},{\"code\":\"bo\",\"name\":\"Tibetan\"\
},{\"code\":\"br\",\"name\":\"Breton\"},{\"code\":\"bs\",\"name\":\"Bosnian\"\
},{\"code\":\"ca\",\"name\":\"Catalan\"},{\"code\":\"ce\",\"name\":\"Chechen\"\
},{\"code\":\"ch\",\"name\":\"Chamorro\"},{\"code\":\"co\",\"name\":\"Corsican\"\
},{\"code\":\"cr\",\"name\":\"Cree\"},{\"code\":\"cs\",\"name\":\"Czech\"\
},{\"code\":\"cu\",\"name\":\"Old Church Slavonic\"},{\"code\":\"cv\",\"name\"\
:\"Chuvash\"},{\"code\":\"cy\",\"name\":\"Welsh\"},{\"code\":\"da\",\"name\"\
:\"Danish\"},{\"code\":\"de\",\"name\":\"German\"},{\"code\":\"dv\",\"name\"\
:\"Divehi\"},{\"code\":\"dz\",\"name\":\"Dzongkha\"},{\"code\":\"ee\",\"name\"\
:\"Ewe\"},{\"code\":\"el\",\"name\":\"Greek\"},{\"code\":\"en\",\"name\":\"\
English\"},{\"code\":\"eo\",\"name\":\"Esperanto\"},{\"code\":\"es\",\"name\"\
:\"Spanish\"},{\"code\":\"et\",\"name\":\"Estonian\"},{\"code\":\"eu\",\"\
name\":\"Basque\"},{\"code\":\"fa\",\"name\":\"Persian\"},{\"code\":\"ff\"\
,\"name\":\"Fula\"},{\"code\":\"fi\",\"name\":\"Finnish\"},{\"code\":\"fj\"\
,\"name\":\"Fijian\"},{\"code\":\"fo\",\"name\":\"Faroese\"},{\"code\":\"\
fr\",\"name\":\"French\"},{\"code\":\"fy\",\"name\":\"Western Frisian\"},{\"\
code\":\"ga\",\"name\":\"Irish\"},{\"code\":\"gd\",\"name\":\"Scottish Gaelic\"\
},{\"code\":\"gl\",\"name\":\"Galician\"},{\"code\":\"gu\",\"name\":\"Gujarati\"\
},{\"code\":\"gv\",\"name\":\"Manx\"},{\"code\":\"ha\",\"name\":\"Hausa\"\
},{\"code\":\"he\",\"name\":\"Hebrew\"},{\"code\":\"hi\",\"name\":\"Hindi\"\
},{\"code\":\"ho\",\"name\":\"Hiri Motu\"},{\"code\":\"hr\",\"name\":\"Croatian\"\
},{\"code\":\"ht\",\"name\":\"Haitian\"},{\"code\":\"hu\",\"name\":\"Hungarian\"\
},{\"code\":\"hy\",\"name\":\"Armenian\"},{\"code\":\"hz\",\"name\":\"Herero\"\
},{\"code\":\"ia\",\"name\":\"Interlingua\"},{\"code\":\"id\",\"name\":\"\
Indonesian\"},{\"code\":\"ie\",\"name\":\"Interlingue\"},{\"code\":\"ig\"\
,\"name\":\"Igbo\"},{\"code\":\"ii\",\"name\":\"Nuosu\"},{\"code\":\"ik\"\
,\"name\":\"Inupiaq\"},{\"code\":\"io\",\"name\":\"Ido\"},{\"code\":\"is\"\
,\"name\":\"Icelandic\"},{\"code\":\"it\",\"name\":\"Italian\"},{\"code\"\
:\"iu\",\"name\":\"Inuktitut\"},{\"code\":\"ja\",\"name\":\"Japanese\"},{\"\
code\":\"jv\",\"name\":\"Javanese\"},{\"code\":\"ka\",\"name\":\"Georgian\"\
},{\"code\":\"kg\",\"name\":\"Kongo\"},{\"code\":\"ki\",\"name\":\"Kikuyu\"\
},{\"code\":\"kj\",\"name\":\"Kwanyama\"},{\"code\":\"kk\",\"name\":\"Kazakh\"\
},{\"code\":\"kl\",\"name\":\"Kalaallisut\"},{\"code\":\"km\",\"name\":\"\
Khmer\"},{\"code\":\"kn\",\"name\":\"Kannada\"},{\"code\":\"ko\",\"name\"\
:\"Korean\"},{\"code\":\"kr\",\"name\":\"Kanuri\"},{\"code\":\"ks\",\"name\"\
:\"Kashmiri\"},{\"code\":\"ku\",\"name\":\"Kurmanji (Kurdish)\"},{\"code\"\
:\"kv\",\"name\":\"Komi\"},{\"code\":\"kw\",\"name\":\"Cornish\"},{\"code\"\
:\"ky\",\"name\":\"Kyrgyz\"},{\"code\":\"la\",\"name\":\"Latin\"},{\"code\"\
:\"lb\",\"name\":\"Luxembourgish\"},{\"code\":\"lg\",\"name\":\"Ganda\"},{\"\
code\":\"li\",\"name\":\"Limburgish\"},{\"code\":\"ln\",\"name\":\"Lingala\"\
},{\"code\":\"lo\",\"name\":\"Lao\"},{\"code\":\"lt\",\"name\":\"Lithuanian\"\
},{\"code\":\"lu\",\"name\":\"Luba-Katanga\"},{\"code\":\"lv\",\"name\":\"\
Latvian\"},{\"code\":\"mg\",\"name\":\"Malagasy\"},{\"code\":\"mh\",\"name\"\
:\"Marshallese\"},{\"code\":\"mi\",\"name\":\"M\u0101ori\"},{\"code\":\"mk\"\
,\"name\":\"Macedonian\"},{\"code\":\"ml\",\"name\":\"Malayalam\"},{\"code\"\
:\"mn\",\"name\":\"Mongolian\"},{\"code\":\"mr\",\"name\":\"Marathi\"},{\"\
code\":\"ms\",\"name\":\"Malay\"},{\"code\":\"ms-Arab\",\"name\":\"Jawi Malay\"\
},{\"code\":\"mt\",\"name\":\"Maltese\"},{\"code\":\"my\",\"name\":\"Burmese\"\
},{\"code\":\"na\",\"name\":\"Nauru\"},{\"code\":\"nb\",\"name\":\"Norwegian\
\ Bokm\xE5l\"},{\"code\":\"nd\",\"name\":\"Northern Ndebele\"},{\"code\":\"\
ne\",\"name\":\"Nepali\"},{\"code\":\"ng\",\"name\":\"Ndonga\"},{\"code\"\
:\"nl\",\"name\":\"Dutch\"},{\"code\":\"nn\",\"name\":\"Norwegian Nynorsk\"\
},{\"code\":\"no\",\"name\":\"Norwegian\"},{\"code\":\"nr\",\"name\":\"Southern\
\ Ndebele\"},{\"code\":\"nv\",\"name\":\"Navajo\"},{\"code\":\"ny\",\"name\"\
:\"Chichewa\"},{\"code\":\"oc\",\"name\":\"Occitan\"},{\"code\":\"oj\",\"\
name\":\"Ojibwe\"},{\"code\":\"om\",\"name\":\"Oromo\"},{\"code\":\"or\",\"\
name\":\"Oriya\"},{\"code\":\"os\",\"name\":\"Ossetian\"},{\"code\":\"pa\"\
,\"name\":\"Punjabi\"},{\"code\":\"pi\",\"name\":\"P\u0101li\"},{\"code\"\
:\"pl\",\"name\":\"Polish\"},{\"code\":\"ps\",\"name\":\"Pashto\"},{\"code\"\
:\"pt\",\"name\":\"Portuguese\"},{\"code\":\"qu\",\"name\":\"Quechua\"},{\"\
code\":\"rm\",\"name\":\"Romansh\"},{\"code\":\"rn\",\"name\":\"Kirundi\"\
},{\"code\":\"ro\",\"name\":\"Romanian\"},{\"code\":\"ru\",\"name\":\"Russian\"\
},{\"code\":\"rw\",\"name\":\"Kinyarwanda\"},{\"code\":\"sa\",\"name\":\"\
Sanskrit\"},{\"code\":\"sc\",\"name\":\"Sardinian\"},{\"code\":\"sd\",\"name\"\
:\"Sindhi\"},{\"code\":\"se\",\"name\":\"Northern Sami\"},{\"code\":\"sg\"\
,\"name\":\"Sango\"},{\"code\":\"si\",\"name\":\"Sinhala\"},{\"code\":\"sk\"\
,\"name\":\"Slovak\"},{\"code\":\"sl\",\"name\":\"Slovenian\"},{\"code\":\"\
sn\",\"name\":\"Shona\"},{\"code\":\"so\",\"name\":\"Somali\"},{\"code\":\"\
sq\",\"name\":\"Albanian\"},{\"code\":\"sr\",\"name\":\"Serbian\"},{\"code\"\
:\"ss\",\"name\":\"Swati\"},{\"code\":\"st\",\"name\":\"Southern Sotho\"},{\"\
code\":\"su\",\"name\":\"Sundanese\"},{\"code\":\"sv\",\"name\":\"Swedish\"\
},{\"code\":\"sw\",\"name\":\"Swahili\"},{\"code\":\"ta\",\"name\":\"Tamil\"\
},{\"code\":\"te\",\"name\":\"Telugu\"},{\"code\":\"tg\",\"name\":\"Tajik\"\
},{\"code\":\"th\",\"name\":\"Thai\"},{\"code\":\"ti\",\"name\":\"Tigrinya\"\
},{\"code\":\"tk\",\"name\":\"Turkmen\"},{\"code\":\"tl\",\"name\":\"Tagalog\"\
},{\"code\":\"tn\",\"name\":\"Tswana\"},{\"code\":\"to\",\"name\":\"Tonga\"\
},{\"code\":\"tr\",\"name\":\"Turkish\"},{\"code\":\"ts\",\"name\":\"Tsonga\"\
},{\"code\":\"tt\",\"name\":\"Tatar\"},{\"code\":\"tw\",\"name\":\"Twi\"},{\"\
code\":\"ty\",\"name\":\"Tahitian\"},{\"code\":\"ug\",\"name\":\"Uyghur\"\
},{\"code\":\"uk\",\"name\":\"Ukrainian\"},{\"code\":\"ur\",\"name\":\"Urdu\"\
},{\"code\":\"uz\",\"name\":\"Uzbek\"},{\"code\":\"ve\",\"name\":\"Venda\"\
},{\"code\":\"vi\",\"name\":\"Vietnamese\"},{\"code\":\"vo\",\"name\":\"Volap\xFC\
k\"},{\"code\":\"wa\",\"name\":\"Walloon\"},{\"code\":\"wo\",\"name\":\"Wolof\"\
},{\"code\":\"xh\",\"name\":\"Xhosa\"},{\"code\":\"yi\",\"name\":\"Yiddish\"\
},{\"code\":\"yo\",\"name\":\"Yoruba\"},{\"code\":\"za\",\"name\":\"Zhuang\"\
},{\"code\":\"zh\",\"name\":\"Chinese\"},{\"code\":\"zu\",\"name\":\"Zulu\"\
},{\"code\":\"zh-CN\",\"name\":\"Chinese (China)\"},{\"code\":\"zh-HK\",\"\
name\":\"Chinese (Hong Kong)\"},{\"code\":\"zh-TW\",\"name\":\"Chinese (Taiwan)\"\
},{\"code\":\"zh-YUE\",\"name\":\"Cantonese\"},{\"code\":\"ast\",\"name\"\
:\"Asturian\"},{\"code\":\"chr\",\"name\":\"Cherokee\"},{\"code\":\"ckb\"\
,\"name\":\"Sorani (Kurdish)\"},{\"code\":\"cnr\",\"name\":\"Montenegrin\"\
},{\"code\":\"csb\",\"name\":\"Kashubian\"},{\"code\":\"jbo\",\"name\":\"\
Lojban\"},{\"code\":\"kab\",\"name\":\"Kabyle\"},{\"code\":\"ldn\",\"name\"\
:\"L\xE1adan\"},{\"code\":\"lfn\",\"name\":\"Lingua Franca Nova\"},{\"code\"\
:\"moh\",\"name\":\"Mohawk\"},{\"code\":\"nds\",\"name\":\"Low German\"},{\"\
code\":\"pdc\",\"name\":\"Pennsylvania Dutch\"},{\"code\":\"sco\",\"name\"\
:\"Scots\"},{\"code\":\"sma\",\"name\":\"Southern Sami\"},{\"code\":\"smj\"\
,\"name\":\"Lule Sami\"},{\"code\":\"szl\",\"name\":\"Silesian\"},{\"code\"\
:\"tok\",\"name\":\"Toki Pona\"},{\"code\":\"vai\",\"name\":\"Vai\"},{\"code\"\
:\"xal\",\"name\":\"Kalmyk\"},{\"code\":\"zba\",\"name\":\"Balaibalan\"},{\"\
code\":\"zgh\",\"name\":\"Standard Moroccan Tamazight\"}]"
headers:
Cache-Control:
- max-age=300, public, stale-while-revalidate=30, stale-if-error=86400
@ -46,16 +136,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- Sat, 15 Feb 2025 18:13:34 GMT
- Fri, 15 Aug 2025 17:33:03 GMT
ETag:
- W/"193fed564e570e646c1fa671db28318a"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.98, cache_generate.active_support;dur=1.39,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.25,
start_processing.action_controller;dur=0.01, render.active_model_serializers;dur=5.85,
process_action.action_controller;dur=27.32
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.51, cache_generate.active_support;dur=1.02,
cache_write.active_support;dur=0.09, instantiation.active_record;dur=0.23,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=5.70,
process_action.action_controller;dur=28.62
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -67,11 +157,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-15T18:15:00.694748Z'
- '2025-08-15T17:35:00.024647Z'
X-Request-Id:
- d545c957-8fb9-48fc-84aa-ef4ebc804fc8
- a3761d2a-ada9-43c4-8d5f-049635d4bee2
X-Runtime:
- '0.062112'
- '0.050601'
X-XSS-Protection:
- '0'
vary:
@ -85,7 +175,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -96,26 +186,116 @@ interactions:
uri: http://localhost:3000/api/v1/instance/languages
response:
body:
string: "[{\"code\":\"aa\",\"name\":\"Afar\"},{\"code\":\"ab\",\"name\":\"Abkhaz\"},{\"code\":\"ae\",\"name\":\"Avestan\"},{\"code\":\"af\",\"name\":\"Afrikaans\"},{\"code\":\"ak\",\"name\":\"Akan\"},{\"code\":\"am\",\"name\":\"Amharic\"},{\"code\":\"an\",\"name\":\"Aragonese\"},{\"code\":\"ar\",\"name\":\"Arabic\"},{\"code\":\"as\",\"name\":\"Assamese\"},{\"code\":\"av\",\"name\":\"Avaric\"},{\"code\":\"ay\",\"name\":\"Aymara\"},{\"code\":\"az\",\"name\":\"Azerbaijani\"},{\"code\":\"ba\",\"name\":\"Bashkir\"},{\"code\":\"be\",\"name\":\"Belarusian\"},{\"code\":\"bg\",\"name\":\"Bulgarian\"},{\"code\":\"bh\",\"name\":\"Bihari\"},{\"code\":\"bi\",\"name\":\"Bislama\"},{\"code\":\"bm\",\"name\":\"Bambara\"},{\"code\":\"bn\",\"name\":\"Bengali\"},{\"code\":\"bo\",\"name\":\"Tibetan\"},{\"code\":\"br\",\"name\":\"Breton\"},{\"code\":\"bs\",\"name\":\"Bosnian\"},{\"code\":\"ca\",\"name\":\"Catalan\"},{\"code\":\"ce\",\"name\":\"Chechen\"},{\"code\":\"ch\",\"name\":\"Chamorro\"},{\"code\":\"co\",\"name\":\"Corsican\"},{\"code\":\"cr\",\"name\":\"Cree\"},{\"code\":\"cs\",\"name\":\"Czech\"},{\"code\":\"cu\",\"name\":\"Old
Church Slavonic\"},{\"code\":\"cv\",\"name\":\"Chuvash\"},{\"code\":\"cy\",\"name\":\"Welsh\"},{\"code\":\"da\",\"name\":\"Danish\"},{\"code\":\"de\",\"name\":\"German\"},{\"code\":\"dv\",\"name\":\"Divehi\"},{\"code\":\"dz\",\"name\":\"Dzongkha\"},{\"code\":\"ee\",\"name\":\"Ewe\"},{\"code\":\"el\",\"name\":\"Greek\"},{\"code\":\"en\",\"name\":\"English\"},{\"code\":\"eo\",\"name\":\"Esperanto\"},{\"code\":\"es\",\"name\":\"Spanish\"},{\"code\":\"et\",\"name\":\"Estonian\"},{\"code\":\"eu\",\"name\":\"Basque\"},{\"code\":\"fa\",\"name\":\"Persian\"},{\"code\":\"ff\",\"name\":\"Fula\"},{\"code\":\"fi\",\"name\":\"Finnish\"},{\"code\":\"fj\",\"name\":\"Fijian\"},{\"code\":\"fo\",\"name\":\"Faroese\"},{\"code\":\"fr\",\"name\":\"French\"},{\"code\":\"fy\",\"name\":\"Western
Frisian\"},{\"code\":\"ga\",\"name\":\"Irish\"},{\"code\":\"gd\",\"name\":\"Scottish
Gaelic\"},{\"code\":\"gl\",\"name\":\"Galician\"},{\"code\":\"gu\",\"name\":\"Gujarati\"},{\"code\":\"gv\",\"name\":\"Manx\"},{\"code\":\"ha\",\"name\":\"Hausa\"},{\"code\":\"he\",\"name\":\"Hebrew\"},{\"code\":\"hi\",\"name\":\"Hindi\"},{\"code\":\"ho\",\"name\":\"Hiri
Motu\"},{\"code\":\"hr\",\"name\":\"Croatian\"},{\"code\":\"ht\",\"name\":\"Haitian\"},{\"code\":\"hu\",\"name\":\"Hungarian\"},{\"code\":\"hy\",\"name\":\"Armenian\"},{\"code\":\"hz\",\"name\":\"Herero\"},{\"code\":\"ia\",\"name\":\"Interlingua\"},{\"code\":\"id\",\"name\":\"Indonesian\"},{\"code\":\"ie\",\"name\":\"Interlingue\"},{\"code\":\"ig\",\"name\":\"Igbo\"},{\"code\":\"ii\",\"name\":\"Nuosu\"},{\"code\":\"ik\",\"name\":\"Inupiaq\"},{\"code\":\"io\",\"name\":\"Ido\"},{\"code\":\"is\",\"name\":\"Icelandic\"},{\"code\":\"it\",\"name\":\"Italian\"},{\"code\":\"iu\",\"name\":\"Inuktitut\"},{\"code\":\"ja\",\"name\":\"Japanese\"},{\"code\":\"jv\",\"name\":\"Javanese\"},{\"code\":\"ka\",\"name\":\"Georgian\"},{\"code\":\"kg\",\"name\":\"Kongo\"},{\"code\":\"ki\",\"name\":\"Kikuyu\"},{\"code\":\"kj\",\"name\":\"Kwanyama\"},{\"code\":\"kk\",\"name\":\"Kazakh\"},{\"code\":\"kl\",\"name\":\"Kalaallisut\"},{\"code\":\"km\",\"name\":\"Khmer\"},{\"code\":\"kn\",\"name\":\"Kannada\"},{\"code\":\"ko\",\"name\":\"Korean\"},{\"code\":\"kr\",\"name\":\"Kanuri\"},{\"code\":\"ks\",\"name\":\"Kashmiri\"},{\"code\":\"ku\",\"name\":\"Kurmanji
(Kurdish)\"},{\"code\":\"kv\",\"name\":\"Komi\"},{\"code\":\"kw\",\"name\":\"Cornish\"},{\"code\":\"ky\",\"name\":\"Kyrgyz\"},{\"code\":\"la\",\"name\":\"Latin\"},{\"code\":\"lb\",\"name\":\"Luxembourgish\"},{\"code\":\"lg\",\"name\":\"Ganda\"},{\"code\":\"li\",\"name\":\"Limburgish\"},{\"code\":\"ln\",\"name\":\"Lingala\"},{\"code\":\"lo\",\"name\":\"Lao\"},{\"code\":\"lt\",\"name\":\"Lithuanian\"},{\"code\":\"lu\",\"name\":\"Luba-Katanga\"},{\"code\":\"lv\",\"name\":\"Latvian\"},{\"code\":\"mg\",\"name\":\"Malagasy\"},{\"code\":\"mh\",\"name\":\"Marshallese\"},{\"code\":\"mi\",\"name\":\"M\u0101ori\"},{\"code\":\"mk\",\"name\":\"Macedonian\"},{\"code\":\"ml\",\"name\":\"Malayalam\"},{\"code\":\"mn\",\"name\":\"Mongolian\"},{\"code\":\"mr\",\"name\":\"Marathi\"},{\"code\":\"ms\",\"name\":\"Malay\"},{\"code\":\"ms-Arab\",\"name\":\"Jawi
Malay\"},{\"code\":\"mt\",\"name\":\"Maltese\"},{\"code\":\"my\",\"name\":\"Burmese\"},{\"code\":\"na\",\"name\":\"Nauru\"},{\"code\":\"nb\",\"name\":\"Norwegian
Bokm\xE5l\"},{\"code\":\"nd\",\"name\":\"Northern Ndebele\"},{\"code\":\"ne\",\"name\":\"Nepali\"},{\"code\":\"ng\",\"name\":\"Ndonga\"},{\"code\":\"nl\",\"name\":\"Dutch\"},{\"code\":\"nn\",\"name\":\"Norwegian
Nynorsk\"},{\"code\":\"no\",\"name\":\"Norwegian\"},{\"code\":\"nr\",\"name\":\"Southern
Ndebele\"},{\"code\":\"nv\",\"name\":\"Navajo\"},{\"code\":\"ny\",\"name\":\"Chichewa\"},{\"code\":\"oc\",\"name\":\"Occitan\"},{\"code\":\"oj\",\"name\":\"Ojibwe\"},{\"code\":\"om\",\"name\":\"Oromo\"},{\"code\":\"or\",\"name\":\"Oriya\"},{\"code\":\"os\",\"name\":\"Ossetian\"},{\"code\":\"pa\",\"name\":\"Punjabi\"},{\"code\":\"pi\",\"name\":\"P\u0101li\"},{\"code\":\"pl\",\"name\":\"Polish\"},{\"code\":\"ps\",\"name\":\"Pashto\"},{\"code\":\"pt\",\"name\":\"Portuguese\"},{\"code\":\"qu\",\"name\":\"Quechua\"},{\"code\":\"rm\",\"name\":\"Romansh\"},{\"code\":\"rn\",\"name\":\"Kirundi\"},{\"code\":\"ro\",\"name\":\"Romanian\"},{\"code\":\"ru\",\"name\":\"Russian\"},{\"code\":\"rw\",\"name\":\"Kinyarwanda\"},{\"code\":\"sa\",\"name\":\"Sanskrit\"},{\"code\":\"sc\",\"name\":\"Sardinian\"},{\"code\":\"sd\",\"name\":\"Sindhi\"},{\"code\":\"se\",\"name\":\"Northern
Sami\"},{\"code\":\"sg\",\"name\":\"Sango\"},{\"code\":\"si\",\"name\":\"Sinhala\"},{\"code\":\"sk\",\"name\":\"Slovak\"},{\"code\":\"sl\",\"name\":\"Slovenian\"},{\"code\":\"sn\",\"name\":\"Shona\"},{\"code\":\"so\",\"name\":\"Somali\"},{\"code\":\"sq\",\"name\":\"Albanian\"},{\"code\":\"sr\",\"name\":\"Serbian\"},{\"code\":\"ss\",\"name\":\"Swati\"},{\"code\":\"st\",\"name\":\"Southern
Sotho\"},{\"code\":\"su\",\"name\":\"Sundanese\"},{\"code\":\"sv\",\"name\":\"Swedish\"},{\"code\":\"sw\",\"name\":\"Swahili\"},{\"code\":\"ta\",\"name\":\"Tamil\"},{\"code\":\"te\",\"name\":\"Telugu\"},{\"code\":\"tg\",\"name\":\"Tajik\"},{\"code\":\"th\",\"name\":\"Thai\"},{\"code\":\"ti\",\"name\":\"Tigrinya\"},{\"code\":\"tk\",\"name\":\"Turkmen\"},{\"code\":\"tl\",\"name\":\"Tagalog\"},{\"code\":\"tn\",\"name\":\"Tswana\"},{\"code\":\"to\",\"name\":\"Tonga\"},{\"code\":\"tr\",\"name\":\"Turkish\"},{\"code\":\"ts\",\"name\":\"Tsonga\"},{\"code\":\"tt\",\"name\":\"Tatar\"},{\"code\":\"tw\",\"name\":\"Twi\"},{\"code\":\"ty\",\"name\":\"Tahitian\"},{\"code\":\"ug\",\"name\":\"Uyghur\"},{\"code\":\"uk\",\"name\":\"Ukrainian\"},{\"code\":\"ur\",\"name\":\"Urdu\"},{\"code\":\"uz\",\"name\":\"Uzbek\"},{\"code\":\"ve\",\"name\":\"Venda\"},{\"code\":\"vi\",\"name\":\"Vietnamese\"},{\"code\":\"vo\",\"name\":\"Volap\xFCk\"},{\"code\":\"wa\",\"name\":\"Walloon\"},{\"code\":\"wo\",\"name\":\"Wolof\"},{\"code\":\"xh\",\"name\":\"Xhosa\"},{\"code\":\"yi\",\"name\":\"Yiddish\"},{\"code\":\"yo\",\"name\":\"Yoruba\"},{\"code\":\"za\",\"name\":\"Zhuang\"},{\"code\":\"zh\",\"name\":\"Chinese\"},{\"code\":\"zu\",\"name\":\"Zulu\"},{\"code\":\"zh-CN\",\"name\":\"Chinese
(China)\"},{\"code\":\"zh-HK\",\"name\":\"Chinese (Hong Kong)\"},{\"code\":\"zh-TW\",\"name\":\"Chinese
(Taiwan)\"},{\"code\":\"zh-YUE\",\"name\":\"Cantonese\"},{\"code\":\"ast\",\"name\":\"Asturian\"},{\"code\":\"chr\",\"name\":\"Cherokee\"},{\"code\":\"ckb\",\"name\":\"Sorani
(Kurdish)\"},{\"code\":\"cnr\",\"name\":\"Montenegrin\"},{\"code\":\"csb\",\"name\":\"Kashubian\"},{\"code\":\"jbo\",\"name\":\"Lojban\"},{\"code\":\"kab\",\"name\":\"Kabyle\"},{\"code\":\"ldn\",\"name\":\"L\xE1adan\"},{\"code\":\"lfn\",\"name\":\"Lingua
Franca Nova\"},{\"code\":\"moh\",\"name\":\"Mohawk\"},{\"code\":\"nds\",\"name\":\"Low
German\"},{\"code\":\"pdc\",\"name\":\"Pennsylvania Dutch\"},{\"code\":\"sco\",\"name\":\"Scots\"},{\"code\":\"sma\",\"name\":\"Southern
Sami\"},{\"code\":\"smj\",\"name\":\"Lule Sami\"},{\"code\":\"szl\",\"name\":\"Silesian\"},{\"code\":\"tok\",\"name\":\"Toki
Pona\"},{\"code\":\"vai\",\"name\":\"Vai\"},{\"code\":\"xal\",\"name\":\"Kalmyk\"},{\"code\":\"zba\",\"name\":\"Balaibalan\"},{\"code\":\"zgh\",\"name\":\"Standard
Moroccan Tamazight\"}]"
string: "[{\"code\":\"aa\",\"name\":\"Afar\"},{\"code\":\"ab\",\"name\":\"Abkhaz\"\
},{\"code\":\"ae\",\"name\":\"Avestan\"},{\"code\":\"af\",\"name\":\"Afrikaans\"\
},{\"code\":\"ak\",\"name\":\"Akan\"},{\"code\":\"am\",\"name\":\"Amharic\"\
},{\"code\":\"an\",\"name\":\"Aragonese\"},{\"code\":\"ar\",\"name\":\"Arabic\"\
},{\"code\":\"as\",\"name\":\"Assamese\"},{\"code\":\"av\",\"name\":\"Avaric\"\
},{\"code\":\"ay\",\"name\":\"Aymara\"},{\"code\":\"az\",\"name\":\"Azerbaijani\"\
},{\"code\":\"ba\",\"name\":\"Bashkir\"},{\"code\":\"be\",\"name\":\"Belarusian\"\
},{\"code\":\"bg\",\"name\":\"Bulgarian\"},{\"code\":\"bh\",\"name\":\"Bihari\"\
},{\"code\":\"bi\",\"name\":\"Bislama\"},{\"code\":\"bm\",\"name\":\"Bambara\"\
},{\"code\":\"bn\",\"name\":\"Bengali\"},{\"code\":\"bo\",\"name\":\"Tibetan\"\
},{\"code\":\"br\",\"name\":\"Breton\"},{\"code\":\"bs\",\"name\":\"Bosnian\"\
},{\"code\":\"ca\",\"name\":\"Catalan\"},{\"code\":\"ce\",\"name\":\"Chechen\"\
},{\"code\":\"ch\",\"name\":\"Chamorro\"},{\"code\":\"co\",\"name\":\"Corsican\"\
},{\"code\":\"cr\",\"name\":\"Cree\"},{\"code\":\"cs\",\"name\":\"Czech\"\
},{\"code\":\"cu\",\"name\":\"Old Church Slavonic\"},{\"code\":\"cv\",\"name\"\
:\"Chuvash\"},{\"code\":\"cy\",\"name\":\"Welsh\"},{\"code\":\"da\",\"name\"\
:\"Danish\"},{\"code\":\"de\",\"name\":\"German\"},{\"code\":\"dv\",\"name\"\
:\"Divehi\"},{\"code\":\"dz\",\"name\":\"Dzongkha\"},{\"code\":\"ee\",\"name\"\
:\"Ewe\"},{\"code\":\"el\",\"name\":\"Greek\"},{\"code\":\"en\",\"name\":\"\
English\"},{\"code\":\"eo\",\"name\":\"Esperanto\"},{\"code\":\"es\",\"name\"\
:\"Spanish\"},{\"code\":\"et\",\"name\":\"Estonian\"},{\"code\":\"eu\",\"\
name\":\"Basque\"},{\"code\":\"fa\",\"name\":\"Persian\"},{\"code\":\"ff\"\
,\"name\":\"Fula\"},{\"code\":\"fi\",\"name\":\"Finnish\"},{\"code\":\"fj\"\
,\"name\":\"Fijian\"},{\"code\":\"fo\",\"name\":\"Faroese\"},{\"code\":\"\
fr\",\"name\":\"French\"},{\"code\":\"fy\",\"name\":\"Western Frisian\"},{\"\
code\":\"ga\",\"name\":\"Irish\"},{\"code\":\"gd\",\"name\":\"Scottish Gaelic\"\
},{\"code\":\"gl\",\"name\":\"Galician\"},{\"code\":\"gu\",\"name\":\"Gujarati\"\
},{\"code\":\"gv\",\"name\":\"Manx\"},{\"code\":\"ha\",\"name\":\"Hausa\"\
},{\"code\":\"he\",\"name\":\"Hebrew\"},{\"code\":\"hi\",\"name\":\"Hindi\"\
},{\"code\":\"ho\",\"name\":\"Hiri Motu\"},{\"code\":\"hr\",\"name\":\"Croatian\"\
},{\"code\":\"ht\",\"name\":\"Haitian\"},{\"code\":\"hu\",\"name\":\"Hungarian\"\
},{\"code\":\"hy\",\"name\":\"Armenian\"},{\"code\":\"hz\",\"name\":\"Herero\"\
},{\"code\":\"ia\",\"name\":\"Interlingua\"},{\"code\":\"id\",\"name\":\"\
Indonesian\"},{\"code\":\"ie\",\"name\":\"Interlingue\"},{\"code\":\"ig\"\
,\"name\":\"Igbo\"},{\"code\":\"ii\",\"name\":\"Nuosu\"},{\"code\":\"ik\"\
,\"name\":\"Inupiaq\"},{\"code\":\"io\",\"name\":\"Ido\"},{\"code\":\"is\"\
,\"name\":\"Icelandic\"},{\"code\":\"it\",\"name\":\"Italian\"},{\"code\"\
:\"iu\",\"name\":\"Inuktitut\"},{\"code\":\"ja\",\"name\":\"Japanese\"},{\"\
code\":\"jv\",\"name\":\"Javanese\"},{\"code\":\"ka\",\"name\":\"Georgian\"\
},{\"code\":\"kg\",\"name\":\"Kongo\"},{\"code\":\"ki\",\"name\":\"Kikuyu\"\
},{\"code\":\"kj\",\"name\":\"Kwanyama\"},{\"code\":\"kk\",\"name\":\"Kazakh\"\
},{\"code\":\"kl\",\"name\":\"Kalaallisut\"},{\"code\":\"km\",\"name\":\"\
Khmer\"},{\"code\":\"kn\",\"name\":\"Kannada\"},{\"code\":\"ko\",\"name\"\
:\"Korean\"},{\"code\":\"kr\",\"name\":\"Kanuri\"},{\"code\":\"ks\",\"name\"\
:\"Kashmiri\"},{\"code\":\"ku\",\"name\":\"Kurmanji (Kurdish)\"},{\"code\"\
:\"kv\",\"name\":\"Komi\"},{\"code\":\"kw\",\"name\":\"Cornish\"},{\"code\"\
:\"ky\",\"name\":\"Kyrgyz\"},{\"code\":\"la\",\"name\":\"Latin\"},{\"code\"\
:\"lb\",\"name\":\"Luxembourgish\"},{\"code\":\"lg\",\"name\":\"Ganda\"},{\"\
code\":\"li\",\"name\":\"Limburgish\"},{\"code\":\"ln\",\"name\":\"Lingala\"\
},{\"code\":\"lo\",\"name\":\"Lao\"},{\"code\":\"lt\",\"name\":\"Lithuanian\"\
},{\"code\":\"lu\",\"name\":\"Luba-Katanga\"},{\"code\":\"lv\",\"name\":\"\
Latvian\"},{\"code\":\"mg\",\"name\":\"Malagasy\"},{\"code\":\"mh\",\"name\"\
:\"Marshallese\"},{\"code\":\"mi\",\"name\":\"M\u0101ori\"},{\"code\":\"mk\"\
,\"name\":\"Macedonian\"},{\"code\":\"ml\",\"name\":\"Malayalam\"},{\"code\"\
:\"mn\",\"name\":\"Mongolian\"},{\"code\":\"mr\",\"name\":\"Marathi\"},{\"\
code\":\"ms\",\"name\":\"Malay\"},{\"code\":\"ms-Arab\",\"name\":\"Jawi Malay\"\
},{\"code\":\"mt\",\"name\":\"Maltese\"},{\"code\":\"my\",\"name\":\"Burmese\"\
},{\"code\":\"na\",\"name\":\"Nauru\"},{\"code\":\"nb\",\"name\":\"Norwegian\
\ Bokm\xE5l\"},{\"code\":\"nd\",\"name\":\"Northern Ndebele\"},{\"code\":\"\
ne\",\"name\":\"Nepali\"},{\"code\":\"ng\",\"name\":\"Ndonga\"},{\"code\"\
:\"nl\",\"name\":\"Dutch\"},{\"code\":\"nn\",\"name\":\"Norwegian Nynorsk\"\
},{\"code\":\"no\",\"name\":\"Norwegian\"},{\"code\":\"nr\",\"name\":\"Southern\
\ Ndebele\"},{\"code\":\"nv\",\"name\":\"Navajo\"},{\"code\":\"ny\",\"name\"\
:\"Chichewa\"},{\"code\":\"oc\",\"name\":\"Occitan\"},{\"code\":\"oj\",\"\
name\":\"Ojibwe\"},{\"code\":\"om\",\"name\":\"Oromo\"},{\"code\":\"or\",\"\
name\":\"Oriya\"},{\"code\":\"os\",\"name\":\"Ossetian\"},{\"code\":\"pa\"\
,\"name\":\"Punjabi\"},{\"code\":\"pi\",\"name\":\"P\u0101li\"},{\"code\"\
:\"pl\",\"name\":\"Polish\"},{\"code\":\"ps\",\"name\":\"Pashto\"},{\"code\"\
:\"pt\",\"name\":\"Portuguese\"},{\"code\":\"qu\",\"name\":\"Quechua\"},{\"\
code\":\"rm\",\"name\":\"Romansh\"},{\"code\":\"rn\",\"name\":\"Kirundi\"\
},{\"code\":\"ro\",\"name\":\"Romanian\"},{\"code\":\"ru\",\"name\":\"Russian\"\
},{\"code\":\"rw\",\"name\":\"Kinyarwanda\"},{\"code\":\"sa\",\"name\":\"\
Sanskrit\"},{\"code\":\"sc\",\"name\":\"Sardinian\"},{\"code\":\"sd\",\"name\"\
:\"Sindhi\"},{\"code\":\"se\",\"name\":\"Northern Sami\"},{\"code\":\"sg\"\
,\"name\":\"Sango\"},{\"code\":\"si\",\"name\":\"Sinhala\"},{\"code\":\"sk\"\
,\"name\":\"Slovak\"},{\"code\":\"sl\",\"name\":\"Slovenian\"},{\"code\":\"\
sn\",\"name\":\"Shona\"},{\"code\":\"so\",\"name\":\"Somali\"},{\"code\":\"\
sq\",\"name\":\"Albanian\"},{\"code\":\"sr\",\"name\":\"Serbian\"},{\"code\"\
:\"ss\",\"name\":\"Swati\"},{\"code\":\"st\",\"name\":\"Southern Sotho\"},{\"\
code\":\"su\",\"name\":\"Sundanese\"},{\"code\":\"sv\",\"name\":\"Swedish\"\
},{\"code\":\"sw\",\"name\":\"Swahili\"},{\"code\":\"ta\",\"name\":\"Tamil\"\
},{\"code\":\"te\",\"name\":\"Telugu\"},{\"code\":\"tg\",\"name\":\"Tajik\"\
},{\"code\":\"th\",\"name\":\"Thai\"},{\"code\":\"ti\",\"name\":\"Tigrinya\"\
},{\"code\":\"tk\",\"name\":\"Turkmen\"},{\"code\":\"tl\",\"name\":\"Tagalog\"\
},{\"code\":\"tn\",\"name\":\"Tswana\"},{\"code\":\"to\",\"name\":\"Tonga\"\
},{\"code\":\"tr\",\"name\":\"Turkish\"},{\"code\":\"ts\",\"name\":\"Tsonga\"\
},{\"code\":\"tt\",\"name\":\"Tatar\"},{\"code\":\"tw\",\"name\":\"Twi\"},{\"\
code\":\"ty\",\"name\":\"Tahitian\"},{\"code\":\"ug\",\"name\":\"Uyghur\"\
},{\"code\":\"uk\",\"name\":\"Ukrainian\"},{\"code\":\"ur\",\"name\":\"Urdu\"\
},{\"code\":\"uz\",\"name\":\"Uzbek\"},{\"code\":\"ve\",\"name\":\"Venda\"\
},{\"code\":\"vi\",\"name\":\"Vietnamese\"},{\"code\":\"vo\",\"name\":\"Volap\xFC\
k\"},{\"code\":\"wa\",\"name\":\"Walloon\"},{\"code\":\"wo\",\"name\":\"Wolof\"\
},{\"code\":\"xh\",\"name\":\"Xhosa\"},{\"code\":\"yi\",\"name\":\"Yiddish\"\
},{\"code\":\"yo\",\"name\":\"Yoruba\"},{\"code\":\"za\",\"name\":\"Zhuang\"\
},{\"code\":\"zh\",\"name\":\"Chinese\"},{\"code\":\"zu\",\"name\":\"Zulu\"\
},{\"code\":\"zh-CN\",\"name\":\"Chinese (China)\"},{\"code\":\"zh-HK\",\"\
name\":\"Chinese (Hong Kong)\"},{\"code\":\"zh-TW\",\"name\":\"Chinese (Taiwan)\"\
},{\"code\":\"zh-YUE\",\"name\":\"Cantonese\"},{\"code\":\"ast\",\"name\"\
:\"Asturian\"},{\"code\":\"chr\",\"name\":\"Cherokee\"},{\"code\":\"ckb\"\
,\"name\":\"Sorani (Kurdish)\"},{\"code\":\"cnr\",\"name\":\"Montenegrin\"\
},{\"code\":\"csb\",\"name\":\"Kashubian\"},{\"code\":\"jbo\",\"name\":\"\
Lojban\"},{\"code\":\"kab\",\"name\":\"Kabyle\"},{\"code\":\"ldn\",\"name\"\
:\"L\xE1adan\"},{\"code\":\"lfn\",\"name\":\"Lingua Franca Nova\"},{\"code\"\
:\"moh\",\"name\":\"Mohawk\"},{\"code\":\"nds\",\"name\":\"Low German\"},{\"\
code\":\"pdc\",\"name\":\"Pennsylvania Dutch\"},{\"code\":\"sco\",\"name\"\
:\"Scots\"},{\"code\":\"sma\",\"name\":\"Southern Sami\"},{\"code\":\"smj\"\
,\"name\":\"Lule Sami\"},{\"code\":\"szl\",\"name\":\"Silesian\"},{\"code\"\
:\"tok\",\"name\":\"Toki Pona\"},{\"code\":\"vai\",\"name\":\"Vai\"},{\"code\"\
:\"xal\",\"name\":\"Kalmyk\"},{\"code\":\"zba\",\"name\":\"Balaibalan\"},{\"\
code\":\"zgh\",\"name\":\"Standard Moroccan Tamazight\"}]"
headers:
Cache-Control:
- max-age=300, public, stale-while-revalidate=30, stale-if-error=86400
@ -126,16 +306,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- Sat, 15 Feb 2025 18:13:34 GMT
- Fri, 15 Aug 2025 17:33:03 GMT
ETag:
- W/"193fed564e570e646c1fa671db28318a"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.80, cache_generate.active_support;dur=1.12,
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.55, cache_generate.active_support;dur=0.90,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.23,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=5.66,
process_action.action_controller;dur=24.30
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=5.90,
process_action.action_controller;dur=28.55
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -147,11 +327,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-15T18:15:00.770164Z'
- '2025-08-15T17:35:00.107086Z'
X-Request-Id:
- 62cc479e-713b-43c1-95a9-0da3844054f9
- c83fe855-de26-45e5-bcb9-f226fadfc67a
X-Runtime:
- '0.039428'
- '0.049416'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -27,16 +27,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- Thu, 13 Feb 2025 21:55:48 GMT
- Fri, 15 Aug 2025 17:33:02 GMT
ETag:
- W/"3a9f4de31c077c49f763801bdd324235"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.05, sql.active_record;dur=0.63, cache_generate.active_support;dur=1.73,
cache_write.active_support;dur=0.13, instantiation.active_record;dur=0.11,
- cache_read.active_support;dur=0.05, sql.active_record;dur=0.64, cache_generate.active_support;dur=1.85,
cache_write.active_support;dur=0.14, instantiation.active_record;dur=0.11,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.03,
process_action.action_controller;dur=19.73
process_action.action_controller;dur=22.68
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -48,11 +48,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.372549Z'
- '2025-08-15T17:35:00.019327Z'
X-Request-Id:
- b50068f4-49ba-4c82-b33d-0c14d871c797
- c9b597ec-efae-4ea1-a51c-fdf035760ebb
X-Runtime:
- '0.037760'
- '0.045641'
X-XSS-Protection:
- '0'
vary:
@ -66,7 +66,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -88,16 +88,77 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- Thu, 13 Feb 2025 21:55:48 GMT
- Fri, 15 Aug 2025 17:33:02 GMT
ETag:
- W/"3a9f4de31c077c49f763801bdd324235"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.05, sql.active_record;dur=0.61, cache_generate.active_support;dur=1.69,
cache_write.active_support;dur=0.13, instantiation.active_record;dur=0.10,
- cache_read.active_support;dur=0.05, sql.active_record;dur=0.67, cache_generate.active_support;dur=1.85,
cache_write.active_support;dur=0.15, instantiation.active_record;dur=0.11,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.03,
process_action.action_controller;dur=23.50
X-Content-Type-Options:
- nosniff
X-Frame-Options:
- SAMEORIGIN
X-Permitted-Cross-Domain-Policies:
- none
X-RateLimit-Limit:
- '300'
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-08-15T17:35:00.069126Z'
X-Request-Id:
- c8b51bf6-d340-4b49-b55d-fab093ae74fa
X-Runtime:
- '0.046617'
X-XSS-Protection:
- '0'
vary:
- Accept, Origin
status:
code: 200
message: OK
- request:
body: null
headers:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
- keep-alive
User-Agent:
- tests/v311
method: GET
uri: http://localhost:3000/api/v1/instance/peers
response:
body:
string: '["chitter.xyz"]'
headers:
Cache-Control:
- max-age=300, public, stale-while-revalidate=30, stale-if-error=86400
Content-Length:
- '15'
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'; form-action 'none'
Content-Type:
- application/json; charset=utf-8
Date:
- Fri, 15 Aug 2025 17:33:02 GMT
ETag:
- W/"3a9f4de31c077c49f763801bdd324235"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.05, sql.active_record;dur=0.59, cache_generate.active_support;dur=1.73,
cache_write.active_support;dur=0.13, instantiation.active_record;dur=0.09,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.02,
process_action.action_controller;dur=18.42
process_action.action_controller;dur=21.15
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -109,72 +170,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.409719Z'
- '2025-08-15T17:35:00.121115Z'
X-Request-Id:
- 7a9e3f5b-2b8a-42ba-b817-94f79cfb8a46
- 002665d3-a6b1-4e7e-a5bf-5d696faf265d
X-Runtime:
- '0.032602'
X-XSS-Protection:
- '0'
vary:
- Accept, Origin
status:
code: 200
message: OK
- request:
body: null
headers:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
- keep-alive
User-Agent:
- tests/v311
method: GET
uri: http://localhost:3000/api/v1/instance/peers
response:
body:
string: '["chitter.xyz"]'
headers:
Cache-Control:
- max-age=300, public, stale-while-revalidate=30, stale-if-error=86400
Content-Length:
- '15'
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'; form-action 'none'
Content-Type:
- application/json; charset=utf-8
Date:
- Thu, 13 Feb 2025 21:55:48 GMT
ETag:
- W/"3a9f4de31c077c49f763801bdd324235"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.05, sql.active_record;dur=0.64, cache_generate.active_support;dur=2.34,
cache_write.active_support;dur=0.14, instantiation.active_record;dur=0.10,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.03,
process_action.action_controller;dur=18.79
X-Content-Type-Options:
- nosniff
X-Frame-Options:
- SAMEORIGIN
X-Permitted-Cross-Domain-Policies:
- none
X-RateLimit-Limit:
- '300'
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.446894Z'
X-Request-Id:
- 6b01f460-8e3a-47da-96ec-e6b354c8dc90
X-Runtime:
- '0.033758'
- '0.041103'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -27,16 +27,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- Thu, 13 Feb 2025 21:55:49 GMT
- Fri, 15 Aug 2025 17:33:02 GMT
ETag:
- W/"4f53cda18c2baa0c0354bb5f9a3ecbe5"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.51, cache_generate.active_support;dur=0.85,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.10,
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.46, cache_generate.active_support;dur=0.89,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.10,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.04,
process_action.action_controller;dur=18.75
process_action.action_controller;dur=21.29
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -48,11 +48,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.029576Z'
- '2025-08-15T17:35:00.863013Z'
X-Request-Id:
- dbf58e41-d758-4e9a-bb58-5ae4ec4e1b74
- 7050eabd-f7cf-449d-95bc-0880aa2c411f
X-Runtime:
- '0.041600'
- '0.043398'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -16,7 +16,7 @@ interactions:
uri: http://localhost:3000/api/v1/instance/
response:
body:
string: '{"uri":"localhost:3000","title":"Mastodon","short_description":"","description":"","email":"","version":"4.3.0","urls":{"streaming_api":"ws://localhost:4000"},"stats":{"user_count":4,"status_count":7,"domain_count":1},"thumbnail":"http://localhost:3000/packs/media/images/preview-6399aebd96ccf025654e2977454f168f.png","languages":["en"],"registrations":true,"approval_required":false,"invites_enabled":true,"configuration":{"accounts":{"max_featured_tags":10},"statuses":{"max_characters":500,"max_media_attachments":4,"characters_reserved_per_url":23},"media_attachments":{"supported_mime_types":["image/jpeg","image/png","image/gif","image/heic","image/heif","image/webp","image/avif","video/webm","video/mp4","video/quicktime","video/ogg","audio/wave","audio/wav","audio/x-wav","audio/x-pn-wave","audio/vnd.wave","audio/ogg","audio/vorbis","audio/mpeg","audio/mp3","audio/webm","audio/flac","audio/aac","audio/m4a","audio/x-m4a","audio/mp4","audio/3gpp","video/x-ms-asf"],"image_size_limit":16777216,"image_matrix_limit":33177600,"video_size_limit":103809024,"video_frame_rate_limit":120,"video_matrix_limit":8294400},"polls":{"max_options":4,"max_characters_per_option":50,"min_expiration":300,"max_expiration":2629746}},"contact_account":null,"rules":[]}'
string: '{"uri":"localhost:3000","title":"Mastodon","short_description":"","description":"","email":"","version":"4.3.0","urls":{"streaming_api":"ws://localhost:4000"},"stats":{"user_count":4,"status_count":6,"domain_count":1},"thumbnail":"http://localhost:3000/packs/media/images/preview-6399aebd96ccf025654e2977454f168f.png","languages":["en"],"registrations":true,"approval_required":false,"invites_enabled":true,"configuration":{"accounts":{"max_featured_tags":10},"statuses":{"max_characters":500,"max_media_attachments":4,"characters_reserved_per_url":23},"media_attachments":{"supported_mime_types":["image/jpeg","image/png","image/gif","image/heic","image/heif","image/webp","image/avif","video/webm","video/mp4","video/quicktime","video/ogg","audio/wave","audio/wav","audio/x-wav","audio/x-pn-wave","audio/vnd.wave","audio/ogg","audio/vorbis","audio/mpeg","audio/mp3","audio/webm","audio/flac","audio/aac","audio/m4a","audio/x-m4a","audio/mp4","audio/3gpp","video/x-ms-asf"],"image_size_limit":16777216,"image_matrix_limit":33177600,"video_size_limit":103809024,"video_frame_rate_limit":120,"video_matrix_limit":8294400},"polls":{"max_options":4,"max_characters_per_option":50,"min_expiration":300,"max_expiration":2629746}},"contact_account":null,"rules":[]}'
headers:
Cache-Control:
- max-age=300, public, stale-while-revalidate=30, stale-if-error=86400
@ -27,16 +27,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- Thu, 13 Feb 2025 21:55:48 GMT
- Fri, 15 Aug 2025 17:33:01 GMT
ETag:
- W/"f45e8965bf6c10bcf3fbfb2deedf2a4f"
- W/"0f63300ddf4d275bf31e5aef71b6274d"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.13, sql.active_record;dur=1.93, cache_generate.active_support;dur=6.96,
cache_write.active_support;dur=0.38, instantiation.active_record;dur=0.19,
- cache_read.active_support;dur=0.15, sql.active_record;dur=2.08, cache_generate.active_support;dur=8.56,
cache_write.active_support;dur=0.42, instantiation.active_record;dur=0.21,
start_processing.action_controller;dur=0.00, cache_fetch_hit.active_support;dur=0.00,
render.active_model_serializers;dur=15.96, process_action.action_controller;dur=33.43
render.active_model_serializers;dur=12.08, process_action.action_controller;dur=32.42
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -48,11 +48,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.161606Z'
- '2025-08-15T17:35:00.730434Z'
X-Request-Id:
- db222a9d-ddee-4cd1-be10-98eb65f790fc
- b2db36fe-02eb-43e4-8b3f-d5f7874b196a
X-Runtime:
- '0.048917'
- '0.052811'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -20,8 +20,9 @@ interactions:
uri: http://localhost:3000/api/v1/statuses
response:
body:
string: "{\"error\":\"\u30D0\u30EA\u30C7\u30FC\u30B7\u30E7\u30F3\u306B\u5931\u6557\u3057\u307E\u3057\u305F:
Text\u4E0A\u9650\u306F500\u6587\u5B57\u3067\u3059\"}"
string: "{\"error\":\"\u30D0\u30EA\u30C7\u30FC\u30B7\u30E7\u30F3\u306B\u5931\
\u6557\u3057\u307E\u3057\u305F: Text\u4E0A\u9650\u306F500\u6587\u5B57\u3067\
\u3059\"}"
headers:
Cache-Control:
- private, no-store
@ -34,10 +35,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.71, cache_generate.active_support;dur=0.99,
cache_write.active_support;dur=0.12, instantiation.active_record;dur=0.40,
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.80, cache_generate.active_support;dur=0.97,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.37,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.03,
process_action.action_controller;dur=31.92
process_action.action_controller;dur=32.62
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -49,11 +50,11 @@ interactions:
X-RateLimit-Remaining:
- '296'
X-RateLimit-Reset:
- '2025-02-14T00:00:00.081279Z'
- '2025-08-15T18:00:00.657305Z'
X-Request-Id:
- c31cec52-1034-493f-9827-6a9fc051a5c7
- db1ace0c-651b-4132-b9ca-3ef49e54ef0f
X-Runtime:
- '0.047564'
- '0.053598'
X-XSS-Protection:
- '0'
vary:
@ -67,7 +68,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -82,8 +83,8 @@ interactions:
uri: http://localhost:3000/api/v1/statuses
response:
body:
string: "{\"error\":\"G\xFCltigkeitspr\xFCfung ist fehlgeschlagen: Text Begrenzung
von 500 Zeichen \xFCberschritten\"}"
string: "{\"error\":\"G\xFCltigkeitspr\xFCfung ist fehlgeschlagen: Text Begrenzung\
\ von 500 Zeichen \xFCberschritten\"}"
headers:
Cache-Control:
- private, no-store
@ -96,10 +97,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.71, cache_generate.active_support;dur=0.92,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.43,
start_processing.action_controller;dur=0.00, unpermitted_parameters.action_controller;dur=0.02,
render.active_model_serializers;dur=0.03, process_action.action_controller;dur=36.20
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.57, cache_generate.active_support;dur=0.87,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.37,
start_processing.action_controller;dur=0.00, unpermitted_parameters.action_controller;dur=0.03,
render.active_model_serializers;dur=0.05, process_action.action_controller;dur=38.65
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -111,11 +112,11 @@ interactions:
X-RateLimit-Remaining:
- '296'
X-RateLimit-Reset:
- '2025-02-14T00:00:00.151398Z'
- '2025-08-15T18:00:00.736882Z'
X-Request-Id:
- 08a4f3eb-48cc-4f03-b6ed-dc6ae9c9a036
- be7e68f2-0074-4233-9b40-e6995773ae7e
X-Runtime:
- '0.051314'
- '0.058467'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -35,10 +35,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=3.44, cache_generate.active_support;dur=1.01,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.28,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=3.53,
render.active_model_serializers;dur=0.15, process_action.action_controller;dur=23.43
- cache_read.active_support;dur=0.02, sql.active_record;dur=6.67, cache_generate.active_support;dur=0.85,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.30,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=6.85,
render.active_model_serializers;dur=0.14, process_action.action_controller;dur=30.43
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -50,11 +50,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.495831Z'
- '2025-08-15T17:35:00.757488Z'
X-Request-Id:
- c65caa3e-3bb4-423f-9578-bcf17876a582
- 06cc07b0-7eec-4004-a188-5cbc65d03e80
X-Runtime:
- '0.038882'
- '0.049292'
X-XSS-Protection:
- '0'
vary:
@ -68,7 +68,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -79,7 +79,7 @@ interactions:
uri: http://localhost:3000/api/v1/accounts/verify_credentials
response:
body:
string: '{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"source":{"privacy":"public","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[],"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}'
string: '{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"source":{"privacy":"public","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[],"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}'
headers:
Cache-Control:
- private, no-store
@ -90,14 +90,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"be8cf6e4ab6e27b1683738931eefd7a8"
- W/"901229a4c5a66235f03efff55b92086a"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=0.94, cache_generate.active_support;dur=1.42,
cache_write.active_support;dur=0.15, instantiation.active_record;dur=0.30,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=3.97,
process_action.action_controller;dur=28.36
- cache_read.active_support;dur=0.03, sql.active_record;dur=1.16, cache_generate.active_support;dur=1.46,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.33,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.55,
process_action.action_controller;dur=25.53
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -109,11 +109,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.544922Z'
- '2025-08-15T17:35:00.819358Z'
X-Request-Id:
- bffc64e2-98fc-453c-b161-2ddd401d8d75
- cd1192fe-9371-4ae6-ac33-fdb389734d92
X-Runtime:
- '0.042990'
- '0.052776'
X-XSS-Protection:
- '0'
vary:
@ -127,7 +127,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -139,10 +139,10 @@ interactions:
User-Agent:
- tests/v311
method: POST
uri: http://localhost:3000/api/v1/accounts/113998800956287197/follow
uri: http://localhost:3000/api/v1/accounts/115033965466813222/follow
response:
body:
string: '{"id":"113998800956287197","following":true,"showing_reblogs":true,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":"top
string: '{"id":"115033965466813222","following":true,"showing_reblogs":true,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":"top
ebayer gerne wieder"}'
headers:
Cache-Control:
@ -154,16 +154,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"d98a7a80f4f73f11f503a13f7d501948"
- W/"034b43e248e558e623e4c1e518e15209"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.03, sql.active_record;dur=5.22, cache_generate.active_support;dur=0.84,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.54,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=5.72,
- cache_read.active_support;dur=0.02, sql.active_record;dur=7.12, cache_generate.active_support;dur=0.89,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.52,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=8.00,
cache_delete.active_support;dur=0.03, cache_read_multi.active_support;dur=0.03,
cache_write_multi.active_support;dur=0.07, render.active_model_serializers;dur=0.16,
process_action.action_controller;dur=37.95
cache_write_multi.active_support;dur=0.06, render.active_model_serializers;dur=0.15,
process_action.action_controller;dur=42.23
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -175,11 +175,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.601015Z'
- '2025-08-15T17:35:00.898957Z'
X-Request-Id:
- 4859de83-81f9-4757-812d-61ce6d3f404c
- 4ba8b266-6e78-4708-a3fd-f8204e6f7601
X-Runtime:
- '0.052624'
- '0.068854'
X-XSS-Protection:
- '0'
vary:
@ -188,12 +188,12 @@ interactions:
code: 200
message: OK
- request:
body: account_ids%5B%5D=113998800956287197
body: account_ids%5B%5D=115033965466813222
headers:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -223,11 +223,11 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=3.59, cache_generate.active_support;dur=0.91,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.33,
- cache_read.active_support;dur=0.02, sql.active_record;dur=5.10, cache_generate.active_support;dur=0.76,
cache_write.active_support;dur=0.09, instantiation.active_record;dur=0.40,
start_processing.action_controller;dur=0.00, unpermitted_parameters.action_controller;dur=0.00,
transaction.active_record;dur=9.39, render.active_model_serializers;dur=0.02,
process_action.action_controller;dur=30.26
transaction.active_record;dur=10.78, render.active_model_serializers;dur=0.03,
process_action.action_controller;dur=35.82
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -239,11 +239,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.661981Z'
- '2025-08-15T17:35:00.974971Z'
X-Request-Id:
- 61515ea3-406a-4352-b647-e27cc2e78066
- b89b086d-8983-4947-a8d8-9aaaab6f579b
X-Runtime:
- '0.046753'
- '0.057180'
X-XSS-Protection:
- '0'
vary:
@ -257,7 +257,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -268,7 +268,7 @@ interactions:
uri: http://localhost:3000/api/v1/lists/3/accounts
response:
body:
string: '[{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]}]'
string: '[{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]}]'
headers:
Cache-Control:
- private, no-store
@ -279,17 +279,17 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"6ce14cf297a3ce0d3ec87f868739fb5a"
- W/"a770380a6149847adb8d578dfb2144ca"
Link:
- <http://localhost:3000/api/v1/lists/3/accounts?since_id=113998800956287197>;
- <http://localhost:3000/api/v1/lists/3/accounts?since_id=115033965466813222>;
rel="prev"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.03, sql.active_record;dur=1.41, cache_generate.active_support;dur=1.18,
cache_write.active_support;dur=0.11, instantiation.active_record;dur=0.46,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=2.25,
process_action.action_controller;dur=24.40
- cache_read.active_support;dur=0.03, sql.active_record;dur=1.27, cache_generate.active_support;dur=1.92,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.43,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=2.43,
process_action.action_controller;dur=27.33
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -301,11 +301,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.709955Z'
- '2025-08-15T17:35:00.038843Z'
X-Request-Id:
- b66b74cc-0047-4fe3-bc03-8b7087afe5f6
- 0111cacb-12d5-466b-86ed-eb51f460bcf0
X-Runtime:
- '0.038423'
- '0.046853'
X-XSS-Protection:
- '0'
vary:
@ -319,7 +319,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -329,10 +329,10 @@ interactions:
User-Agent:
- tests/v311
method: POST
uri: http://localhost:3000/api/v1/accounts/113998800956287197/unfollow
uri: http://localhost:3000/api/v1/accounts/115033965466813222/unfollow
response:
body:
string: '{"id":"113998800956287197","following":false,"showing_reblogs":false,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":"top
string: '{"id":"115033965466813222","following":false,"showing_reblogs":false,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":"top
ebayer gerne wieder"}'
headers:
Cache-Control:
@ -344,16 +344,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"980c7f806d79f9d809d65077d0616e26"
- W/"93a7ec1562e4d70121d96e3171b6fe44"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=4.53, cache_generate.active_support;dur=0.79,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.47,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=6.08,
cache_delete.active_support;dur=0.03, cache_read_multi.active_support;dur=0.03,
- cache_read.active_support;dur=0.02, sql.active_record;dur=6.11, cache_generate.active_support;dur=0.91,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.55,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=7.41,
cache_delete.active_support;dur=0.03, cache_read_multi.active_support;dur=0.04,
cache_write_multi.active_support;dur=0.06, render.active_model_serializers;dur=0.16,
process_action.action_controller;dur=37.18
process_action.action_controller;dur=37.57
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -365,11 +365,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.764627Z'
- '2025-08-15T17:35:00.106436Z'
X-Request-Id:
- d684dc02-a4fb-4f7e-90a7-e427ab3143c9
- 12c5bb3f-d913-450f-b252-a7a5ef547e26
X-Runtime:
- '0.051019'
- '0.057149'
X-XSS-Protection:
- '0'
vary:
@ -383,7 +383,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -409,10 +409,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.79, cache_generate.active_support;dur=0.86,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.22,
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.92, cache_generate.active_support;dur=0.98,
cache_write.active_support;dur=0.09, instantiation.active_record;dur=0.27,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.04,
process_action.action_controller;dur=19.52
process_action.action_controller;dur=23.30
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -424,11 +424,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.822370Z'
- '2025-08-15T17:35:00.175970Z'
X-Request-Id:
- ba641b8c-21a1-4239-b44d-df1f13ec9c94
- 0c36c869-6e44-459c-96c1-38b1fe83d6df
X-Runtime:
- '0.034026'
- '0.042930'
X-XSS-Protection:
- '0'
vary:
@ -442,7 +442,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -454,10 +454,10 @@ interactions:
User-Agent:
- tests/v311
method: POST
uri: http://localhost:3000/api/v1/accounts/113998800956287197/follow
uri: http://localhost:3000/api/v1/accounts/115033965466813222/follow
response:
body:
string: '{"id":"113998800956287197","following":true,"showing_reblogs":true,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":"top
string: '{"id":"115033965466813222","following":true,"showing_reblogs":true,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":"top
ebayer gerne wieder"}'
headers:
Cache-Control:
@ -469,16 +469,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"d98a7a80f4f73f11f503a13f7d501948"
- W/"034b43e248e558e623e4c1e518e15209"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=5.09, cache_generate.active_support;dur=0.88,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.47,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=6.08,
- cache_read.active_support;dur=0.02, sql.active_record;dur=7.16, cache_generate.active_support;dur=0.92,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.55,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=7.70,
cache_delete.active_support;dur=0.03, cache_read_multi.active_support;dur=0.03,
cache_write_multi.active_support;dur=0.07, render.active_model_serializers;dur=0.16,
process_action.action_controller;dur=37.44
cache_write_multi.active_support;dur=0.07, render.active_model_serializers;dur=0.15,
process_action.action_controller;dur=47.70
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -490,11 +490,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.859414Z'
- '2025-08-15T17:35:00.227221Z'
X-Request-Id:
- bdf816f5-5619-49be-98d8-5590ea991b52
- 30e1f672-7d63-4b48-9220-e5eeec5bb6b6
X-Runtime:
- '0.051691'
- '0.066982'
X-XSS-Protection:
- '0'
vary:
@ -503,12 +503,12 @@ interactions:
code: 200
message: OK
- request:
body: account_ids%5B%5D=113998800956287197
body: account_ids%5B%5D=115033965466813222
headers:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -538,11 +538,11 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=3.28, cache_generate.active_support;dur=0.74,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.35,
- cache_read.active_support;dur=0.02, sql.active_record;dur=5.38, cache_generate.active_support;dur=0.91,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.36,
start_processing.action_controller;dur=0.00, unpermitted_parameters.action_controller;dur=0.00,
transaction.active_record;dur=5.35, render.active_model_serializers;dur=0.02,
process_action.action_controller;dur=25.65
transaction.active_record;dur=7.38, render.active_model_serializers;dur=0.02,
process_action.action_controller;dur=31.19
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -554,11 +554,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.917521Z'
- '2025-08-15T17:35:00.323908Z'
X-Request-Id:
- 0b63316f-5429-4f4f-90cb-0db2c3672664
- 70c894ea-5c2b-4e3b-8b89-37b4e2773229
X-Runtime:
- '0.039488'
- '0.050280'
X-XSS-Protection:
- '0'
vary:
@ -572,7 +572,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -583,7 +583,7 @@ interactions:
uri: http://localhost:3000/api/v1/lists/3/accounts
response:
body:
string: '[{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]}]'
string: '[{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]}]'
headers:
Cache-Control:
- private, no-store
@ -594,17 +594,17 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"6ce14cf297a3ce0d3ec87f868739fb5a"
- W/"a770380a6149847adb8d578dfb2144ca"
Link:
- <http://localhost:3000/api/v1/lists/3/accounts?since_id=113998800956287197>;
- <http://localhost:3000/api/v1/lists/3/accounts?since_id=115033965466813222>;
rel="prev"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=1.52, cache_generate.active_support;dur=1.75,
cache_write.active_support;dur=0.13, instantiation.active_record;dur=3.12,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=11.45,
process_action.action_controller;dur=44.67
- cache_read.active_support;dur=0.04, sql.active_record;dur=1.24, cache_generate.active_support;dur=1.44,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.46,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=2.42,
process_action.action_controller;dur=28.07
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -616,11 +616,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.965026Z'
- '2025-08-15T17:35:00.380245Z'
X-Request-Id:
- 1598133d-518d-4502-8124-d9f6299b07fd
- 95e0b303-32df-48db-8ce4-ee0bd1951890
X-Runtime:
- '0.059287'
- '0.050010'
X-XSS-Protection:
- '0'
vary:
@ -629,12 +629,12 @@ interactions:
code: 200
message: OK
- request:
body: account_ids%5B%5D=113998800956287197
body: account_ids%5B%5D=115033965466813222
headers:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -664,11 +664,11 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=4.01, cache_generate.active_support;dur=1.03,
cache_write.active_support;dur=0.09, instantiation.active_record;dur=0.46,
- cache_read.active_support;dur=0.02, sql.active_record;dur=6.20, cache_generate.active_support;dur=0.92,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=4.61,
start_processing.action_controller;dur=0.00, unpermitted_parameters.action_controller;dur=0.00,
transaction.active_record;dur=3.20, render.active_model_serializers;dur=0.02,
process_action.action_controller;dur=26.85
transaction.active_record;dur=4.50, render.active_model_serializers;dur=0.03,
process_action.action_controller;dur=35.19
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -680,11 +680,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.045091Z'
- '2025-08-15T17:35:00.453005Z'
X-Request-Id:
- c2b3da22-2140-47d2-ad26-154ad45a9efb
- ab1cb22f-72b1-4edf-bc85-b99cd41eb15e
X-Runtime:
- '0.042763'
- '0.054938'
X-XSS-Protection:
- '0'
vary:
@ -698,7 +698,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -724,10 +724,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.90, cache_generate.active_support;dur=0.89,
cache_write.active_support;dur=3.54, instantiation.active_record;dur=0.27,
- cache_read.active_support;dur=0.03, sql.active_record;dur=1.18, cache_generate.active_support;dur=0.96,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.28,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.04,
process_action.action_controller;dur=20.53
process_action.action_controller;dur=24.44
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -739,11 +739,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.091547Z'
- '2025-08-15T17:35:00.518409Z'
X-Request-Id:
- cc24545e-ffd3-417f-b1c2-43eab903add8
- e76cc6c7-8ae9-4ae7-a6b4-4a229b71811d
X-Runtime:
- '0.038201'
- '0.044341'
X-XSS-Protection:
- '0'
vary:
@ -757,7 +757,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -767,10 +767,10 @@ interactions:
User-Agent:
- tests/v311
method: POST
uri: http://localhost:3000/api/v1/accounts/113998800956287197/unfollow
uri: http://localhost:3000/api/v1/accounts/115033965466813222/unfollow
response:
body:
string: '{"id":"113998800956287197","following":false,"showing_reblogs":false,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":"top
string: '{"id":"115033965466813222","following":false,"showing_reblogs":false,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":"top
ebayer gerne wieder"}'
headers:
Cache-Control:
@ -782,16 +782,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"980c7f806d79f9d809d65077d0616e26"
- W/"93a7ec1562e4d70121d96e3171b6fe44"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=5.19, cache_generate.active_support;dur=1.00,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.79,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=6.40,
- cache_read.active_support;dur=0.02, sql.active_record;dur=6.99, cache_generate.active_support;dur=0.96,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.66,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=8.48,
cache_delete.active_support;dur=0.03, cache_read_multi.active_support;dur=0.04,
cache_write_multi.active_support;dur=0.06, render.active_model_serializers;dur=0.17,
process_action.action_controller;dur=34.46
cache_write_multi.active_support;dur=0.06, render.active_model_serializers;dur=0.16,
process_action.action_controller;dur=39.30
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -803,11 +803,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.129966Z'
- '2025-08-15T17:35:00.572810Z'
X-Request-Id:
- 8d9b939b-769c-4597-aadc-326922a94ed9
- 0c11f02b-e5ae-4c8d-893e-80594552e5f1
X-Runtime:
- '0.049001'
- '0.059599'
X-XSS-Protection:
- '0'
vary:
@ -821,7 +821,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -849,10 +849,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=3.24, cache_generate.active_support;dur=0.96,
cache_write.active_support;dur=0.09, instantiation.active_record;dur=0.34,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=6.94,
render.active_model_serializers;dur=0.02, process_action.action_controller;dur=30.63
- cache_read.active_support;dur=0.02, sql.active_record;dur=4.71, cache_generate.active_support;dur=0.91,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.40,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=5.17,
render.active_model_serializers;dur=0.02, process_action.action_controller;dur=29.33
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -864,11 +864,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.189150Z'
- '2025-08-15T17:35:00.639898Z'
X-Request-Id:
- 7147e6c5-ddda-499b-9707-700eef5223ce
- bd450bac-dec5-47e7-a6a3-198567db52b3
X-Runtime:
- '0.045537'
- '0.049294'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -35,10 +35,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=3.59, cache_generate.active_support;dur=0.93,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.30,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=3.65,
render.active_model_serializers;dur=0.17, process_action.action_controller;dur=24.23
- cache_read.active_support;dur=0.02, sql.active_record;dur=5.49, cache_generate.active_support;dur=1.00,
cache_write.active_support;dur=0.11, instantiation.active_record;dur=0.37,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=13.61,
render.active_model_serializers;dur=0.14, process_action.action_controller;dur=37.42
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -50,11 +50,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.246117Z'
- '2025-08-15T17:35:00.741888Z'
X-Request-Id:
- fcfe59b5-bc3a-4eae-bc14-30e29d30ab9b
- 8bf19342-a1fa-456c-be8f-6ae9ec2d17d1
X-Runtime:
- '0.041556'
- '0.056990'
X-XSS-Protection:
- '0'
vary:
@ -68,7 +68,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -79,7 +79,7 @@ interactions:
uri: http://localhost:3000/api/v1/accounts/verify_credentials
response:
body:
string: '{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"source":{"privacy":"public","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[],"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}'
string: '{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"source":{"privacy":"public","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[],"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}'
headers:
Cache-Control:
- private, no-store
@ -90,14 +90,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"be8cf6e4ab6e27b1683738931eefd7a8"
- W/"901229a4c5a66235f03efff55b92086a"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=0.99, cache_generate.active_support;dur=1.43,
cache_write.active_support;dur=0.33, instantiation.active_record;dur=0.32,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.38,
process_action.action_controller;dur=22.66
- cache_read.active_support;dur=0.04, sql.active_record;dur=1.10, cache_generate.active_support;dur=1.63,
cache_write.active_support;dur=0.11, instantiation.active_record;dur=1.19,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.71,
process_action.action_controller;dur=27.09
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -109,11 +109,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.290247Z'
- '2025-08-15T17:35:00.804290Z'
X-Request-Id:
- 69b10ffb-860b-4edf-bacf-2aff03f455c2
- 7d7026e3-04fc-4d58-9e68-42905db5a0dd
X-Runtime:
- '0.037382'
- '0.046935'
X-XSS-Protection:
- '0'
vary:
@ -127,7 +127,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -139,10 +139,10 @@ interactions:
User-Agent:
- tests/v311
method: POST
uri: http://localhost:3000/api/v1/accounts/113998800956287197/follow
uri: http://localhost:3000/api/v1/accounts/115033965466813222/follow
response:
body:
string: '{"id":"113998800956287197","following":true,"showing_reblogs":true,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":"top
string: '{"id":"115033965466813222","following":true,"showing_reblogs":true,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":"top
ebayer gerne wieder"}'
headers:
Cache-Control:
@ -154,16 +154,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"d98a7a80f4f73f11f503a13f7d501948"
- W/"034b43e248e558e623e4c1e518e15209"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.03, sql.active_record;dur=7.77, cache_generate.active_support;dur=1.04,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.77,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=10.44,
cache_delete.active_support;dur=0.03, cache_read_multi.active_support;dur=0.03,
cache_write_multi.active_support;dur=0.06, render.active_model_serializers;dur=0.16,
process_action.action_controller;dur=46.51
- cache_read.active_support;dur=0.02, sql.active_record;dur=7.12, cache_generate.active_support;dur=0.95,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.58,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=7.74,
cache_delete.active_support;dur=0.05, cache_read_multi.active_support;dur=0.04,
cache_write_multi.active_support;dur=0.06, render.active_model_serializers;dur=0.15,
process_action.action_controller;dur=47.46
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -175,11 +175,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.347390Z'
- '2025-08-15T17:35:00.877791Z'
X-Request-Id:
- 98fc98fb-3c1d-4193-8dcf-d5a7b940ab6b
- 828cbff8-6a6d-4ca7-99ec-9ecd8a6691be
X-Runtime:
- '0.061958'
- '0.067239'
X-XSS-Protection:
- '0'
vary:
@ -188,12 +188,12 @@ interactions:
code: 200
message: OK
- request:
body: account_ids%5B%5D=113998800956287197
body: account_ids%5B%5D=115033965466813222
headers:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -223,11 +223,11 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=3.53, cache_generate.active_support;dur=0.80,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.36,
- cache_read.active_support;dur=0.02, sql.active_record;dur=5.37, cache_generate.active_support;dur=0.93,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.47,
start_processing.action_controller;dur=0.00, unpermitted_parameters.action_controller;dur=0.00,
transaction.active_record;dur=5.50, render.active_model_serializers;dur=0.02,
process_action.action_controller;dur=26.09
transaction.active_record;dur=7.49, render.active_model_serializers;dur=0.02,
process_action.action_controller;dur=31.74
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -239,11 +239,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.414642Z'
- '2025-08-15T17:35:00.957487Z'
X-Request-Id:
- dabb7445-9e57-476f-b5f0-7e02e7c0c69d
- fede977a-0918-436a-9141-a78a884c4377
X-Runtime:
- '0.040636'
- '0.051027'
X-XSS-Protection:
- '0'
vary:
@ -257,7 +257,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -265,7 +265,7 @@ interactions:
User-Agent:
- tests/v311
method: GET
uri: http://localhost:3000/api/v1/accounts/113998800956287197/lists
uri: http://localhost:3000/api/v1/accounts/115033965466813222/lists
response:
body:
string: '[{"id":"4","title":"ham burglars","replies_policy":"list","exclusive":false}]'
@ -283,10 +283,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.93, cache_generate.active_support;dur=0.95,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.30,
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.87, cache_generate.active_support;dur=1.05,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.33,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.18,
process_action.action_controller;dur=20.95
process_action.action_controller;dur=24.46
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -298,11 +298,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.461485Z'
- '2025-08-15T17:35:00.016602Z'
X-Request-Id:
- 079b8681-a4d3-4a8c-a40b-d987ebbcfc5b
- d9b98063-bc43-4484-8816-656291422885
X-Runtime:
- '0.038191'
- '0.047128'
X-XSS-Protection:
- '0'
vary:
@ -316,7 +316,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -326,10 +326,10 @@ interactions:
User-Agent:
- tests/v311
method: POST
uri: http://localhost:3000/api/v1/accounts/113998800956287197/unfollow
uri: http://localhost:3000/api/v1/accounts/115033965466813222/unfollow
response:
body:
string: '{"id":"113998800956287197","following":false,"showing_reblogs":false,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":"top
string: '{"id":"115033965466813222","following":false,"showing_reblogs":false,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":"top
ebayer gerne wieder"}'
headers:
Cache-Control:
@ -341,16 +341,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"980c7f806d79f9d809d65077d0616e26"
- W/"93a7ec1562e4d70121d96e3171b6fe44"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=4.89, cache_generate.active_support;dur=0.96,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.49,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=7.15,
cache_delete.active_support;dur=0.03, cache_read_multi.active_support;dur=0.03,
cache_write_multi.active_support;dur=0.06, render.active_model_serializers;dur=0.15,
process_action.action_controller;dur=33.54
- cache_read.active_support;dur=0.02, sql.active_record;dur=6.60, cache_generate.active_support;dur=0.91,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.67,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=8.63,
cache_delete.active_support;dur=0.03, cache_read_multi.active_support;dur=0.04,
cache_write_multi.active_support;dur=0.07, render.active_model_serializers;dur=0.17,
process_action.action_controller;dur=38.45
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -362,11 +362,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.501397Z'
- '2025-08-15T17:35:00.069730Z'
X-Request-Id:
- 5462a3d7-2a86-450f-bf52-336381467770
- c6bd14fb-2004-48e8-ab05-e799bd0ffdf1
X-Runtime:
- '0.048517'
- '0.058222'
X-XSS-Protection:
- '0'
vary:
@ -380,7 +380,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -408,10 +408,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.03, sql.active_record;dur=3.13, cache_generate.active_support;dur=1.04,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=2.64,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=3.51,
render.active_model_serializers;dur=0.03, process_action.action_controller;dur=32.62
- cache_read.active_support;dur=0.02, sql.active_record;dur=5.02, cache_generate.active_support;dur=1.00,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.42,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=6.15,
render.active_model_serializers;dur=0.03, process_action.action_controller;dur=30.82
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -423,11 +423,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.560808Z'
- '2025-08-15T17:35:00.141218Z'
X-Request-Id:
- 8c10b350-ef80-463b-8a26-1c4ae1d68172
- 2be5e644-78f2-476d-b50e-da45ca6b80f8
X-Runtime:
- '0.047635'
- '0.050808'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -35,10 +35,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=5.47, cache_generate.active_support;dur=0.96,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.35,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=3.99,
render.active_model_serializers;dur=0.12, process_action.action_controller;dur=34.42
- cache_read.active_support;dur=0.02, sql.active_record;dur=7.38, cache_generate.active_support;dur=1.04,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.36,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=6.71,
render.active_model_serializers;dur=0.13, process_action.action_controller;dur=42.60
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -50,11 +50,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.075322Z'
- '2025-08-15T17:35:00.220429Z'
X-Request-Id:
- 4f75ce9a-d731-4dd7-868a-ebf98632bb61
- 352a0c02-194a-4fcd-b808-33e263cd12bf
X-Runtime:
- '0.051909'
- '0.064657'
X-XSS-Protection:
- '0'
vary:
@ -68,7 +68,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -94,10 +94,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.75, cache_generate.active_support;dur=1.04,
cache_write.active_support;dur=0.09, instantiation.active_record;dur=0.34,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.18,
process_action.action_controller;dur=20.52
- cache_read.active_support;dur=0.02, sql.active_record;dur=2.20, cache_generate.active_support;dur=0.87,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=4.79,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.17,
process_action.action_controller;dur=31.86
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -109,11 +109,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.129139Z'
- '2025-08-15T17:35:00.295795Z'
X-Request-Id:
- 3e2da20e-3c29-4b2d-a6b8-e20f4216ab62
- 9d06754b-a39e-4589-8ae5-3e97f9b27132
X-Runtime:
- '0.035643'
- '0.060188'
X-XSS-Protection:
- '0'
vary:
@ -127,7 +127,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -155,10 +155,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=3.84, cache_generate.active_support;dur=0.97,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.39,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=4.91,
render.active_model_serializers;dur=0.02, process_action.action_controller;dur=27.12
- cache_read.active_support;dur=0.02, sql.active_record;dur=4.63, cache_generate.active_support;dur=0.87,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.38,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=5.21,
render.active_model_serializers;dur=0.03, process_action.action_controller;dur=30.08
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -170,11 +170,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.170353Z'
- '2025-08-15T17:35:00.357620Z'
X-Request-Id:
- 43d0c369-3a5d-44d4-836f-6fee30d15921
- e155f263-dd77-4a62-9bf8-469089003aaf
X-Runtime:
- '0.042442'
- '0.049486'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -35,10 +35,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=3.71, cache_generate.active_support;dur=1.00,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.29,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=3.68,
render.active_model_serializers;dur=0.16, process_action.action_controller;dur=24.11
- cache_read.active_support;dur=0.02, sql.active_record;dur=5.41, cache_generate.active_support;dur=0.89,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.30,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=5.73,
render.active_model_serializers;dur=0.13, process_action.action_controller;dur=28.42
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -50,11 +50,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.614172Z'
- '2025-08-15T17:35:00.220155Z'
X-Request-Id:
- 04d43399-1ae6-4472-bdcb-6b454da90b02
- 9d35dc92-782f-4a62-8481-9828c9f996e0
X-Runtime:
- '0.038993'
- '0.048467'
X-XSS-Protection:
- '0'
vary:
@ -68,7 +68,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -79,7 +79,7 @@ interactions:
uri: http://localhost:3000/api/v1/accounts/verify_credentials
response:
body:
string: '{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"source":{"privacy":"public","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[],"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}'
string: '{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"source":{"privacy":"public","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":null,"indexable":false},"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[],"role":{"id":"3","name":"Owner","permissions":"1048575","color":"","highlighted":true}}'
headers:
Cache-Control:
- private, no-store
@ -90,14 +90,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"be8cf6e4ab6e27b1683738931eefd7a8"
- W/"901229a4c5a66235f03efff55b92086a"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=1.16, cache_generate.active_support;dur=1.54,
cache_write.active_support;dur=0.11, instantiation.active_record;dur=0.39,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.40,
process_action.action_controller;dur=27.70
- cache_read.active_support;dur=0.04, sql.active_record;dur=1.39, cache_generate.active_support;dur=4.00,
cache_write.active_support;dur=0.12, instantiation.active_record;dur=0.41,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=13.30,
process_action.action_controller;dur=43.17
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -109,11 +109,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.663067Z'
- '2025-08-15T17:35:00.279108Z'
X-Request-Id:
- e20a4873-3d2b-4b36-957e-4334894f2f7d
- 553b8c09-af6b-46c2-a86c-10a1e362677a
X-Runtime:
- '0.042503'
- '0.063277'
X-XSS-Protection:
- '0'
vary:
@ -127,7 +127,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -139,10 +139,10 @@ interactions:
User-Agent:
- tests/v311
method: POST
uri: http://localhost:3000/api/v1/accounts/113998800956287197/follow
uri: http://localhost:3000/api/v1/accounts/115033965466813222/follow
response:
body:
string: '{"id":"113998800956287197","following":true,"showing_reblogs":true,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":"top
string: '{"id":"115033965466813222","following":true,"showing_reblogs":true,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":"top
ebayer gerne wieder"}'
headers:
Cache-Control:
@ -154,16 +154,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"d98a7a80f4f73f11f503a13f7d501948"
- W/"034b43e248e558e623e4c1e518e15209"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=5.90, cache_generate.active_support;dur=1.25,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.75,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=7.04,
cache_delete.active_support;dur=0.03, cache_read_multi.active_support;dur=0.04,
cache_write_multi.active_support;dur=0.07, render.active_model_serializers;dur=0.17,
process_action.action_controller;dur=44.21
- cache_read.active_support;dur=0.02, sql.active_record;dur=7.07, cache_generate.active_support;dur=0.88,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.46,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=7.65,
cache_delete.active_support;dur=0.02, cache_read_multi.active_support;dur=0.03,
cache_write_multi.active_support;dur=0.05, render.active_model_serializers;dur=0.15,
process_action.action_controller;dur=40.05
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -175,11 +175,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.725370Z'
- '2025-08-15T17:35:00.363691Z'
X-Request-Id:
- 1db8ab75-c21f-4729-a360-b7a777301d02
- 45724121-6390-496a-9c19-9be8b4efc966
X-Runtime:
- '0.059973'
- '0.059828'
X-XSS-Protection:
- '0'
vary:
@ -188,12 +188,12 @@ interactions:
code: 200
message: OK
- request:
body: account_ids%5B%5D=113998800956287197
body: account_ids%5B%5D=115033965466813222
headers:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -223,11 +223,11 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=3.61, cache_generate.active_support;dur=1.05,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.42,
- cache_read.active_support;dur=0.02, sql.active_record;dur=6.18, cache_generate.active_support;dur=0.83,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.36,
start_processing.action_controller;dur=0.00, unpermitted_parameters.action_controller;dur=0.00,
transaction.active_record;dur=5.48, render.active_model_serializers;dur=0.02,
process_action.action_controller;dur=26.72
transaction.active_record;dur=8.74, render.active_model_serializers;dur=0.03,
process_action.action_controller;dur=32.60
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -239,11 +239,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.787736Z'
- '2025-08-15T17:35:00.435411Z'
X-Request-Id:
- 2739700e-bdd6-483f-afd1-f20ec3e3f9b5
- e0591d04-b0bd-4125-9b62-b44d28275fc3
X-Runtime:
- '0.042311'
- '0.051575'
X-XSS-Protection:
- '0'
vary:
@ -257,7 +257,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -272,9 +272,9 @@ interactions:
uri: http://localhost:3000/api/v1/statuses
response:
body:
string: '{"id":"113998807094977864","created_at":"2025-02-13T21:55:50.839Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"en","uri":"http://localhost:3000/users/admin/statuses/113998807094977864","url":"http://localhost:3000/@admin/113998807094977864","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eI
string: '{"id":"115033976703566382","created_at":"2025-08-15T17:33:05.545Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"en","uri":"http://localhost:3000/users/admin/statuses/115033976703566382","url":"http://localhost:3000/@admin/115033976703566382","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eI
have never stolen a ham in my life.\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":1,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
test suite","website":null},"account":{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
@ -285,14 +285,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"c57adacc40430354c3eacd782ba6acdc"
- W/"952ccbc889cf3ea8b1f31f2eea82e842"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.05, sql.active_record;dur=9.67, cache_generate.active_support;dur=2.85,
cache_write.active_support;dur=0.13, instantiation.active_record;dur=0.50,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=3.95,
render.active_model_serializers;dur=10.88, process_action.action_controller;dur=45.45
- cache_read.active_support;dur=0.05, sql.active_record;dur=18.78, cache_generate.active_support;dur=10.45,
cache_write.active_support;dur=0.15, instantiation.active_record;dur=0.49,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=7.74,
render.active_model_serializers;dur=48.32, process_action.action_controller;dur=123.49
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -304,11 +304,11 @@ interactions:
X-RateLimit-Remaining:
- '298'
X-RateLimit-Reset:
- '2025-02-14T00:00:00.861615Z'
- '2025-08-15T18:00:00.620250Z'
X-Request-Id:
- 3cbb3cbb-af13-404a-9a13-3169e47b14ac
- 263ecf5c-fca4-4490-9659-aa146470aec9
X-Runtime:
- '0.060642'
- '0.163408'
X-XSS-Protection:
- '0'
vary:
@ -322,7 +322,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -333,9 +333,9 @@ interactions:
uri: http://localhost:3000/api/v1/timelines/list/5
response:
body:
string: '[{"id":"113998807094977864","created_at":"2025-02-13T21:55:50.839Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"en","uri":"http://localhost:3000/users/admin/statuses/113998807094977864","url":"http://localhost:3000/@admin/113998807094977864","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003eI
string: '[{"id":"115033976703566382","created_at":"2025-08-15T17:33:05.545Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"en","uri":"http://localhost:3000/users/admin/statuses/115033976703566382","url":"http://localhost:3000/@admin/115033976703566382","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003eI
have never stolen a ham in my life.\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":1,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}]'
test suite","website":null},"account":{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}]'
headers:
Cache-Control:
- private, no-store
@ -346,18 +346,18 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"be0164b132b582375339ec99266fa21f"
- W/"da9441bb69bd83e7708a06c63331d0de"
Link:
- <http://localhost:3000/api/v1/timelines/list/5?max_id=113998807094977864>;
rel="next", <http://localhost:3000/api/v1/timelines/list/5?min_id=113998807094977864>;
- <http://localhost:3000/api/v1/timelines/list/5?max_id=115033976703566382>;
rel="next", <http://localhost:3000/api/v1/timelines/list/5?min_id=115033976703566382>;
rel="prev"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.06, sql.active_record;dur=6.38, cache_generate.active_support;dur=3.39,
cache_write.active_support;dur=0.17, instantiation.active_record;dur=0.68,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.42,
process_action.action_controller;dur=49.57
- cache_read.active_support;dur=0.05, sql.active_record;dur=2.72, cache_generate.active_support;dur=2.95,
cache_write.active_support;dur=0.12, instantiation.active_record;dur=0.52,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=3.47,
process_action.action_controller;dur=37.87
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -369,11 +369,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.935294Z'
- '2025-08-15T17:35:00.701362Z'
X-Request-Id:
- 5cae5935-cf6a-4959-b13f-f941f7ba7bfa
- 68e37d7f-41d4-42d7-af1d-5ece24430223
X-Runtime:
- '0.068785'
- '0.060440'
X-XSS-Protection:
- '0'
vary:
@ -387,7 +387,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -397,12 +397,12 @@ interactions:
User-Agent:
- tests/v311
method: DELETE
uri: http://localhost:3000/api/v1/statuses/113998807094977864
uri: http://localhost:3000/api/v1/statuses/115033976703566382
response:
body:
string: '{"id":"113998807094977864","created_at":"2025-02-13T21:55:50.839Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"en","uri":"http://localhost:3000/users/admin/statuses/113998807094977864","url":"http://localhost:3000/@admin/113998807094977864","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"text":"I
string: '{"id":"115033976703566382","created_at":"2025-08-15T17:33:05.545Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"en","uri":"http://localhost:3000/users/admin/statuses/115033976703566382","url":"http://localhost:3000/@admin/115033976703566382","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"text":"I
have never stolen a ham in my life.","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
test suite","website":null},"account":{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
@ -413,14 +413,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"e2646d610ea67b2551856fbe4157a038"
- W/"306dfaf0f79c3f6f4b3616acb3b495de"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.06, sql.active_record;dur=10.92, cache_generate.active_support;dur=2.80,
cache_write.active_support;dur=0.16, instantiation.active_record;dur=0.97,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=3.98,
render.active_model_serializers;dur=25.04, process_action.action_controller;dur=59.93
- cache_read.active_support;dur=0.05, sql.active_record;dur=7.13, cache_generate.active_support;dur=2.69,
cache_write.active_support;dur=0.14, instantiation.active_record;dur=0.67,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=4.83,
render.active_model_serializers;dur=12.05, process_action.action_controller;dur=43.82
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -432,11 +432,11 @@ interactions:
X-RateLimit-Remaining:
- '29'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.025513Z'
- '2025-08-15T18:00:00.793729Z'
X-Request-Id:
- e6ebe39c-0044-4d1d-b438-fcd520a9158e
- 38a430ef-a29f-4dea-be3e-77589efaa5c6
X-Runtime:
- '0.074766'
- '0.063754'
X-XSS-Protection:
- '0'
vary:
@ -450,7 +450,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -460,10 +460,10 @@ interactions:
User-Agent:
- tests/v311
method: POST
uri: http://localhost:3000/api/v1/accounts/113998800956287197/unfollow
uri: http://localhost:3000/api/v1/accounts/115033965466813222/unfollow
response:
body:
string: '{"id":"113998800956287197","following":false,"showing_reblogs":false,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":"top
string: '{"id":"115033965466813222","following":false,"showing_reblogs":false,"notifying":false,"languages":null,"followed_by":false,"blocking":false,"blocked_by":false,"muting":false,"muting_notifications":false,"requested":false,"requested_by":false,"domain_blocking":false,"endorsed":false,"note":"top
ebayer gerne wieder"}'
headers:
Cache-Control:
@ -475,16 +475,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"980c7f806d79f9d809d65077d0616e26"
- W/"93a7ec1562e4d70121d96e3171b6fe44"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.03, sql.active_record;dur=4.83, cache_generate.active_support;dur=0.91,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.79,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=11.62,
cache_delete.active_support;dur=0.04, cache_read_multi.active_support;dur=0.04,
cache_write_multi.active_support;dur=0.06, render.active_model_serializers;dur=0.17,
process_action.action_controller;dur=39.14
- cache_read.active_support;dur=0.02, sql.active_record;dur=6.38, cache_generate.active_support;dur=0.86,
cache_write.active_support;dur=0.06, instantiation.active_record;dur=0.58,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=8.09,
cache_delete.active_support;dur=0.03, cache_read_multi.active_support;dur=0.03,
cache_write_multi.active_support;dur=0.06, render.active_model_serializers;dur=0.16,
process_action.action_controller;dur=39.16
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -496,11 +496,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.131092Z'
- '2025-08-15T17:35:00.898944Z'
X-Request-Id:
- f0c9fd3b-ad83-4b20-9592-8fcf09fea738
- 2edc1221-b6df-40b9-8e37-f16b87bf003c
X-Runtime:
- '0.054192'
- '0.058675'
X-XSS-Protection:
- '0'
vary:
@ -514,7 +514,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -542,10 +542,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.03, sql.active_record;dur=3.33, cache_generate.active_support;dur=1.05,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.42,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=3.70,
render.active_model_serializers;dur=0.03, process_action.action_controller;dur=25.36
- cache_read.active_support;dur=0.02, sql.active_record;dur=5.24, cache_generate.active_support;dur=0.83,
cache_write.active_support;dur=0.06, instantiation.active_record;dur=0.27,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=5.65,
render.active_model_serializers;dur=0.02, process_action.action_controller;dur=28.27
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -557,11 +557,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.193227Z'
- '2025-08-15T17:35:00.973058Z'
X-Request-Id:
- 3910aef8-2304-4202-baef-a62c38247ce5
- 760467b9-0ac1-45fd-bff5-c9e28e3982ff
X-Runtime:
- '0.040764'
- '0.046908'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -35,10 +35,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=3.64, cache_generate.active_support;dur=1.03,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.31,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=3.76,
render.active_model_serializers;dur=0.16, process_action.action_controller;dur=24.50
- cache_read.active_support;dur=0.02, sql.active_record;dur=6.48, cache_generate.active_support;dur=0.79,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.31,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=6.81,
render.active_model_serializers;dur=0.14, process_action.action_controller;dur=31.06
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -50,11 +50,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.220248Z'
- '2025-08-15T17:35:00.421382Z'
X-Request-Id:
- dc6a2073-77d5-4847-9cef-e0467ef978d3
- 90552d3f-9f48-4f6c-9b89-257b8c9d8e9e
X-Runtime:
- '0.039653'
- '0.050229'
X-XSS-Protection:
- '0'
vary:
@ -68,7 +68,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -98,11 +98,11 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=3.82, cache_generate.active_support;dur=1.00,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.34,
- cache_read.active_support;dur=0.03, sql.active_record;dur=4.79, cache_generate.active_support;dur=0.91,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.36,
start_processing.action_controller;dur=0.00, unpermitted_parameters.action_controller;dur=0.00,
transaction.active_record;dur=3.18, render.active_model_serializers;dur=0.18,
process_action.action_controller;dur=25.52
transaction.active_record;dur=4.30, render.active_model_serializers;dur=0.15,
process_action.action_controller;dur=28.53
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -114,11 +114,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.264017Z'
- '2025-08-15T17:35:00.476331Z'
X-Request-Id:
- 1d2befd5-1ef9-403d-89de-1269fec0eb51
- b8e676b2-5a42-44f8-b0ba-3a0ef8efee40
X-Runtime:
- '0.040515'
- '0.047770'
X-XSS-Protection:
- '0'
vary:
@ -132,7 +132,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -158,69 +158,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.65, cache_generate.active_support;dur=0.95,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.23,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.16,
process_action.action_controller;dur=19.44
X-Content-Type-Options:
- nosniff
X-Frame-Options:
- SAMEORIGIN
X-Permitted-Cross-Domain-Policies:
- none
X-RateLimit-Limit:
- '300'
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.307875Z'
X-Request-Id:
- 2357b834-bb8b-4c08-b494-1dde15e03e39
X-Runtime:
- '0.034039'
X-XSS-Protection:
- '0'
vary:
- Authorization, Origin
status:
code: 200
message: OK
- request:
body: null
headers:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
- keep-alive
User-Agent:
- tests/v311
method: GET
uri: http://localhost:3000/api/v1/lists
response:
body:
string: '[{"id":"2","title":"fry kids","replies_policy":"list","exclusive":false}]'
headers:
Cache-Control:
- private, no-store
Content-Length:
- '73'
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'; form-action 'none'
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"15986ef4523f6d95169e64f12d6c0691"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.61, cache_generate.active_support;dur=0.81,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.21,
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.66, cache_generate.active_support;dur=0.95,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.30,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.17,
process_action.action_controller;dur=18.99
process_action.action_controller;dur=22.74
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -232,11 +173,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.344576Z'
- '2025-08-15T17:35:00.533943Z'
X-Request-Id:
- b8d662c3-cc42-45f2-9bf7-1aa7875a5528
- adda4adb-186d-43af-a274-14189eeb79d1
X-Runtime:
- '0.032736'
- '0.042056'
X-XSS-Protection:
- '0'
vary:
@ -250,7 +191,66 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
- keep-alive
User-Agent:
- tests/v311
method: GET
uri: http://localhost:3000/api/v1/lists
response:
body:
string: '[{"id":"2","title":"fry kids","replies_policy":"list","exclusive":false}]'
headers:
Cache-Control:
- private, no-store
Content-Length:
- '73'
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'; form-action 'none'
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"15986ef4523f6d95169e64f12d6c0691"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.75, cache_generate.active_support;dur=0.92,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.25,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.16,
process_action.action_controller;dur=22.01
X-Content-Type-Options:
- nosniff
X-Frame-Options:
- SAMEORIGIN
X-Permitted-Cross-Domain-Policies:
- none
X-RateLimit-Limit:
- '300'
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-08-15T17:35:00.585853Z'
X-Request-Id:
- ccfdddc8-7bd8-42fb-b156-fe538ec76523
X-Runtime:
- '0.042563'
X-XSS-Protection:
- '0'
vary:
- Authorization, Origin
status:
code: 200
message: OK
- request:
body: null
headers:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -276,10 +276,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=1.50, cache_generate.active_support;dur=0.97,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.31,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.17,
process_action.action_controller;dur=25.93
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.58, cache_generate.active_support;dur=0.80,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.25,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.16,
process_action.action_controller;dur=22.09
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -291,11 +291,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.392781Z'
- '2025-08-15T17:35:00.636100Z'
X-Request-Id:
- 1a2de50c-e933-4d59-a417-75d99893dc54
- bcada512-d616-4716-a416-abe60c71e7f0
X-Runtime:
- '0.048424'
- '0.040812'
X-XSS-Protection:
- '0'
vary:
@ -309,7 +309,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -337,10 +337,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=3.67, cache_generate.active_support;dur=0.90,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.39,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=4.01,
render.active_model_serializers;dur=0.02, process_action.action_controller;dur=25.03
- cache_read.active_support;dur=0.02, sql.active_record;dur=4.49, cache_generate.active_support;dur=0.79,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.33,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=4.91,
render.active_model_serializers;dur=0.02, process_action.action_controller;dur=28.31
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -352,11 +352,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.444197Z'
- '2025-08-15T17:35:00.686850Z'
X-Request-Id:
- 43b9b473-e99a-4f1e-8d9e-9774b31f1028
- d48f9a8f-f651-4062-bf69-b1535c682b1b
X-Runtime:
- '0.045962'
- '0.047155'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -0,0 +1,60 @@
interactions:
- request:
body: null
headers:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate, br
Connection:
- keep-alive
User-Agent:
- tests/v311
method: GET
uri: http://localhost:3000/.well-known/oauth-authorization-server
response:
body:
string: '{"issuer":"http://localhost:3000/","authorization_endpoint":"http://localhost:3000/oauth/authorize","token_endpoint":"http://localhost:3000/oauth/token","revocation_endpoint":"http://localhost:3000/oauth/revoke","scopes_supported":["read","profile","write","write:accounts","write:blocks","write:bookmarks","write:conversations","write:favourites","write:filters","write:follows","write:lists","write:media","write:mutes","write:notifications","write:reports","write:statuses","read:accounts","read:blocks","read:bookmarks","read:favourites","read:filters","read:follows","read:lists","read:mutes","read:notifications","read:search","read:statuses","follow","push","admin:read","admin:read:accounts","admin:read:reports","admin:read:domain_allows","admin:read:domain_blocks","admin:read:ip_blocks","admin:read:email_domain_blocks","admin:read:canonical_email_blocks","admin:write","admin:write:accounts","admin:write:reports","admin:write:domain_allows","admin:write:domain_blocks","admin:write:ip_blocks","admin:write:email_domain_blocks","admin:write:canonical_email_blocks"],"response_types_supported":["code"],"response_modes_supported":["query","fragment","form_post"],"grant_types_supported":["authorization_code","password","client_credentials"],"token_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post"],"code_challenge_methods_supported":["S256"],"service_documentation":"https://docs.joinmastodon.org/","app_registration_endpoint":"http://localhost:3000/api/v1/apps"}'
headers:
Cache-Control:
- max-age=0, private, must-revalidate
Content-Length:
- '1503'
Content-Security-Policy:
- 'base-uri ''none''; default-src ''none''; frame-ancestors ''none''; font-src
''self'' http://localhost:3000; img-src ''self'' data: blob: http://localhost:3000;
style-src ''self'' http://localhost:3000 ''nonce-8ig+ASqrieHMZoHf37C0sQ=='';
media-src ''self'' data: http://localhost:3000; manifest-src ''self'' http://localhost:3000;
form-action ''self''; child-src ''self'' blob: http://localhost:3000; worker-src
''self'' blob: http://localhost:3000; connect-src ''self'' data: blob: http://localhost:3000
ws://localhost:4000 ws://localhost:3035 http://localhost:3035; script-src
''self'' ''unsafe-inline'' ''unsafe-eval'' http://localhost:3000; frame-src
''self'' https: http:'
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"af6a0b2cfc0c377eff2294e0b2f9c31c"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=0.18, cache_generate.active_support;dur=1.09,
cache_write.active_support;dur=0.16, start_processing.action_controller;dur=0.00,
render.active_model_serializers;dur=0.31, process_action.action_controller;dur=50.69
X-Content-Type-Options:
- nosniff
X-Frame-Options:
- SAMEORIGIN
X-Permitted-Cross-Domain-Policies:
- none
X-Request-Id:
- fb1a31bf-780d-4ad6-9086-4832df9528d8
X-Runtime:
- '0.070790'
X-XSS-Protection:
- '0'
vary:
- Origin
status:
code: 200
message: OK
version: 1

Wyświetl plik

@ -1,34 +1,29 @@
interactions:
- request:
body: username=mastodonpy_test_2%40localhost&password=5fc638e0e53eafd9c4145b6bb852667d&redirect_uri=urn%3Aietf%3Awg%3Aoauth%3A2.0%3Aoob&grant_type=password&client_id=__MASTODON_PY_TEST_CLIENT_ID&client_secret=__MASTODON_PY_TEST_CLIENT_SECRET&scope=read+write+follow+push
body: null
headers:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Connection:
- keep-alive
Content-Length:
- '264'
Content-Type:
- application/x-www-form-urlencoded
User-Agent:
- tests/v311
method: POST
uri: http://localhost:3000/oauth/token
method: GET
uri: http://localhost:3000/.well-known/oauth-authorization-server
response:
body:
string: '{"access_token":"__MASTODON_PY_TEST_ACCESS_TOKEN_3","token_type":"Bearer","scope":"read
write follow push","created_at":1739490866}'
string: '{"issuer":"http://localhost:3000/","authorization_endpoint":"http://localhost:3000/oauth/authorize","token_endpoint":"http://localhost:3000/oauth/token","revocation_endpoint":"http://localhost:3000/oauth/revoke","scopes_supported":["read","profile","write","write:accounts","write:blocks","write:bookmarks","write:conversations","write:favourites","write:filters","write:follows","write:lists","write:media","write:mutes","write:notifications","write:reports","write:statuses","read:accounts","read:blocks","read:bookmarks","read:favourites","read:filters","read:follows","read:lists","read:mutes","read:notifications","read:search","read:statuses","follow","push","admin:read","admin:read:accounts","admin:read:reports","admin:read:domain_allows","admin:read:domain_blocks","admin:read:ip_blocks","admin:read:email_domain_blocks","admin:read:canonical_email_blocks","admin:write","admin:write:accounts","admin:write:reports","admin:write:domain_allows","admin:write:domain_blocks","admin:write:ip_blocks","admin:write:email_domain_blocks","admin:write:canonical_email_blocks"],"response_types_supported":["code"],"response_modes_supported":["query","fragment","form_post"],"grant_types_supported":["authorization_code","password","client_credentials"],"token_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post"],"code_challenge_methods_supported":["S256"],"service_documentation":"https://docs.joinmastodon.org/","app_registration_endpoint":"http://localhost:3000/api/v1/apps"}'
headers:
Cache-Control:
- no-store
- max-age=0, private, must-revalidate
Content-Length:
- '131'
- '1503'
Content-Security-Policy:
- 'base-uri ''none''; default-src ''none''; frame-ancestors ''none''; font-src
''self'' http://localhost:3000; img-src ''self'' data: blob: http://localhost:3000;
style-src ''self'' http://localhost:3000 ''nonce-EIp8LI/0wHEGrX1alO9PjA=='';
style-src ''self'' http://localhost:3000 ''nonce-xTf02bCzyXWefPQHPg26qg=='';
media-src ''self'' data: http://localhost:3000; manifest-src ''self'' http://localhost:3000;
form-action ''self''; child-src ''self'' blob: http://localhost:3000; worker-src
''self'' blob: http://localhost:3000; connect-src ''self'' data: blob: http://localhost:3000
@ -38,14 +33,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"7ef7f54dec9ca183637d680dc92e11db"
- W/"af6a0b2cfc0c377eff2294e0b2f9c31c"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=1.03, cache_generate.active_support;dur=1.04,
cache_write.active_support;dur=0.05, start_processing.action_controller;dur=0.01,
instantiation.active_record;dur=0.18, render.active_model_serializers;dur=0.04,
process_action.action_controller;dur=54.61
- sql.active_record;dur=9.28, cache_read.active_support;dur=0.05, cache_generate.active_support;dur=16.69,
cache_write.active_support;dur=0.49, start_processing.action_controller;dur=0.01,
render.active_model_serializers;dur=22.15, process_action.action_controller;dur=89.15
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -53,9 +47,73 @@ interactions:
X-Permitted-Cross-Domain-Policies:
- none
X-Request-Id:
- 722a2d14-3cf3-43ea-b733-63dd3aa7d8cb
- 63effb9d-20da-4494-bd34-f06f6866ef72
X-Runtime:
- '0.078642'
- '0.272233'
X-XSS-Protection:
- '0'
vary:
- Origin
status:
code: 200
message: OK
- request:
body: username=mastodonpy_test_2%40localhost&password=5fc638e0e53eafd9c4145b6bb852667d&redirect_uri=urn%3Aietf%3Awg%3Aoauth%3A2.0%3Aoob&oauth_info=issuer&oauth_info=authorization_endpoint&oauth_info=token_endpoint&oauth_info=revocation_endpoint&oauth_info=scopes_supported&oauth_info=response_types_supported&oauth_info=response_modes_supported&oauth_info=grant_types_supported&oauth_info=token_endpoint_auth_methods_supported&oauth_info=code_challenge_methods_supported&oauth_info=service_documentation&oauth_info=app_registration_endpoint&grant_type=password&client_id=__MASTODON_PY_TEST_CLIENT_ID&client_secret=__MASTODON_PY_TEST_CLIENT_SECRET&scope=read+write+follow+push
headers:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate, br
Connection:
- keep-alive
Content-Length:
- '669'
Content-Type:
- application/x-www-form-urlencoded
User-Agent:
- tests/v311
method: POST
uri: http://localhost:3000/oauth/token
response:
body:
string: '{"access_token":"__MASTODON_PY_TEST_ACCESS_TOKEN_3","token_type":"Bearer","scope":"read
write follow push","created_at":1755362087}'
headers:
Cache-Control:
- no-store
Content-Length:
- '131'
Content-Security-Policy:
- 'base-uri ''none''; default-src ''none''; frame-ancestors ''none''; font-src
''self'' http://localhost:3000; img-src ''self'' data: blob: http://localhost:3000;
style-src ''self'' http://localhost:3000 ''nonce-/1mxNJ3+nOQGOOWgixWKnA=='';
media-src ''self'' data: http://localhost:3000; manifest-src ''self'' http://localhost:3000;
form-action ''self''; child-src ''self'' blob: http://localhost:3000; worker-src
''self'' blob: http://localhost:3000; connect-src ''self'' data: blob: http://localhost:3000
ws://localhost:4000 ws://localhost:3035 http://localhost:3035; script-src
''self'' ''unsafe-inline'' ''unsafe-eval'' http://localhost:3000; frame-src
''self'' https: http:'
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"1bfc3ceb3d512286c81b38292f785002"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- sql.active_record;dur=17.00, cache_read.active_support;dur=0.03, cache_generate.active_support;dur=13.62,
cache_write.active_support;dur=0.10, start_processing.action_controller;dur=0.01,
instantiation.active_record;dur=39.14, render.active_model_serializers;dur=0.07,
process_action.action_controller;dur=123.28
X-Content-Type-Options:
- nosniff
X-Frame-Options:
- SAMEORIGIN
X-Permitted-Cross-Domain-Policies:
- none
X-Request-Id:
- 74edaa14-0025-4066-b130-85dc4589c486
X-Runtime:
- '0.273465'
X-XSS-Protection:
- '0'
vary:
@ -69,7 +127,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_3
Connection:
@ -80,7 +138,7 @@ interactions:
uri: http://localhost:3000/api/v1/instance/
response:
body:
string: '{"uri":"localhost:3000","title":"Mastodon","short_description":"","description":"","email":"","version":"4.3.0","urls":{"streaming_api":"ws://localhost:4000"},"stats":{"user_count":4,"status_count":1,"domain_count":1},"thumbnail":"http://localhost:3000/packs/media/images/preview-6399aebd96ccf025654e2977454f168f.png","languages":["en"],"registrations":true,"approval_required":false,"invites_enabled":true,"configuration":{"accounts":{"max_featured_tags":10},"statuses":{"max_characters":500,"max_media_attachments":4,"characters_reserved_per_url":23},"media_attachments":{"supported_mime_types":["image/jpeg","image/png","image/gif","image/heic","image/heif","image/webp","image/avif","video/webm","video/mp4","video/quicktime","video/ogg","audio/wave","audio/wav","audio/x-wav","audio/x-pn-wave","audio/vnd.wave","audio/ogg","audio/vorbis","audio/mpeg","audio/mp3","audio/webm","audio/flac","audio/aac","audio/m4a","audio/x-m4a","audio/mp4","audio/3gpp","video/x-ms-asf"],"image_size_limit":16777216,"image_matrix_limit":33177600,"video_size_limit":103809024,"video_frame_rate_limit":120,"video_matrix_limit":8294400},"polls":{"max_options":4,"max_characters_per_option":50,"min_expiration":300,"max_expiration":2629746}},"contact_account":null,"rules":[]}'
string: '{"uri":"localhost:3000","title":"Mastodon","short_description":"","description":"","email":"","version":"4.3.0","urls":{"streaming_api":"ws://localhost:4000"},"stats":{"user_count":4,"status_count":0,"domain_count":0},"thumbnail":"http://localhost:3000/packs/media/images/preview-6399aebd96ccf025654e2977454f168f.png","languages":["en"],"registrations":true,"approval_required":false,"invites_enabled":true,"configuration":{"accounts":{"max_featured_tags":10},"statuses":{"max_characters":500,"max_media_attachments":4,"characters_reserved_per_url":23},"media_attachments":{"supported_mime_types":["image/jpeg","image/png","image/gif","image/heic","image/heif","image/webp","image/avif","video/webm","video/mp4","video/quicktime","video/ogg","audio/wave","audio/wav","audio/x-wav","audio/x-pn-wave","audio/vnd.wave","audio/ogg","audio/vorbis","audio/mpeg","audio/mp3","audio/webm","audio/flac","audio/aac","audio/m4a","audio/x-m4a","audio/mp4","audio/3gpp","video/x-ms-asf"],"image_size_limit":16777216,"image_matrix_limit":33177600,"video_size_limit":103809024,"video_frame_rate_limit":120,"video_matrix_limit":8294400},"polls":{"max_options":4,"max_characters_per_option":50,"min_expiration":300,"max_expiration":2629746}},"contact_account":null,"rules":[]}'
headers:
Cache-Control:
- max-age=300, public, stale-while-revalidate=30, stale-if-error=86400
@ -91,16 +149,17 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- Thu, 13 Feb 2025 21:55:14 GMT
- Sat, 16 Aug 2025 13:36:30 GMT
ETag:
- W/"dcbca3473aa5bea97c52ad6cca33e333"
- W/"32a76711c89057c2e4cf176fc0a878c6"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.19, sql.active_record;dur=6.02, cache_generate.active_support;dur=23.65,
cache_write.active_support;dur=0.53, instantiation.active_record;dur=5.86,
start_processing.action_controller;dur=0.01, cache_fetch_hit.active_support;dur=0.00,
render.active_model_serializers;dur=30.92, process_action.action_controller;dur=52.44
- cache_read.active_support;dur=0.18, sql.active_record;dur=23.50, cache_generate.active_support;dur=81.06,
cache_write.active_support;dur=0.46, instantiation.active_record;dur=16.10,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=6.18,
cache_fetch_hit.active_support;dur=0.00, render.active_model_serializers;dur=137.79,
process_action.action_controller;dur=176.78
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -112,11 +171,72 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.072332Z'
- '2025-08-16T13:40:00.889002Z'
X-Request-Id:
- c1002074-3030-460e-9d5a-569dd696307c
- 65f69d46-4e2e-476c-879e-75b2b78c58ee
X-Runtime:
- '0.077141'
- '0.215207'
X-XSS-Protection:
- '0'
vary:
- Accept, Origin
status:
code: 200
message: OK
- request:
body: null
headers:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_3
Connection:
- keep-alive
User-Agent:
- tests/v311
method: GET
uri: http://localhost:3000/api/v2/instance/
response:
body:
string: '{"domain":"localhost:3000","title":"Mastodon","version":"4.3.0","source_url":"https://github.com/mastodon/mastodon","description":"","usage":{"users":{"active_month":0}},"thumbnail":{"url":"http://localhost:3000/packs/media/images/preview-6399aebd96ccf025654e2977454f168f.png"},"icon":[{"src":"http://localhost:3000/packs/media/icons/android-chrome-36x36-4c61fdb42936428af85afdbf8c6a45a8.png","size":"36x36"},{"src":"http://localhost:3000/packs/media/icons/android-chrome-48x48-2027aead76dc906c981043d658a8258d.png","size":"48x48"},{"src":"http://localhost:3000/packs/media/icons/android-chrome-72x72-799d90b81f5b28cea7355a0c0b356381.png","size":"72x72"},{"src":"http://localhost:3000/packs/media/icons/android-chrome-96x96-c2dfcfa1268c56e59edddfe20d818b91.png","size":"96x96"},{"src":"http://localhost:3000/packs/media/icons/android-chrome-144x144-ff3110f7772743bdd0c1c47fb7b2d4e0.png","size":"144x144"},{"src":"http://localhost:3000/packs/media/icons/android-chrome-192x192-eddc1ed540e97b926202b7b857989d60.png","size":"192x192"},{"src":"http://localhost:3000/packs/media/icons/android-chrome-256x256-7b2b43926019259f7c9ddee627d80a0f.png","size":"256x256"},{"src":"http://localhost:3000/packs/media/icons/android-chrome-384x384-72068ed50b02828fc505a8d69b321dea.png","size":"384x384"},{"src":"http://localhost:3000/packs/media/icons/android-chrome-512x512-ccb53c9fcbb5f61bf741cc54998318f0.png","size":"512x512"}],"languages":["en"],"configuration":{"urls":{"streaming":"ws://localhost:4000","status":null},"vapid":{"public_key":"BM0khLcvEe3sNx-QO2PB1hqB-24BqdAh0_kG3nZKAHj348StAFL2EHzK1JJTplzKhmMoz3Z_cNfW6QY8ibUzdF4="},"accounts":{"max_featured_tags":10,"max_pinned_statuses":5},"statuses":{"max_characters":500,"max_media_attachments":4,"characters_reserved_per_url":23},"media_attachments":{"supported_mime_types":["image/jpeg","image/png","image/gif","image/heic","image/heif","image/webp","image/avif","video/webm","video/mp4","video/quicktime","video/ogg","audio/wave","audio/wav","audio/x-wav","audio/x-pn-wave","audio/vnd.wave","audio/ogg","audio/vorbis","audio/mpeg","audio/mp3","audio/webm","audio/flac","audio/aac","audio/m4a","audio/x-m4a","audio/mp4","audio/3gpp","video/x-ms-asf"],"image_size_limit":16777216,"image_matrix_limit":33177600,"video_size_limit":103809024,"video_frame_rate_limit":120,"video_matrix_limit":8294400},"polls":{"max_options":4,"max_characters_per_option":50,"min_expiration":300,"max_expiration":2629746},"translation":{"enabled":false}},"registrations":{"enabled":true,"approval_required":false,"message":null,"url":null},"api_versions":{"mastodon":2},"contact":{"email":"","account":null},"rules":[]}'
headers:
Cache-Control:
- max-age=300, public, stale-while-revalidate=30, stale-if-error=86400
Content-Length:
- '2642'
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'; form-action 'none'
Content-Type:
- application/json; charset=utf-8
Date:
- Sat, 16 Aug 2025 13:36:31 GMT
ETag:
- W/"07121412715576bdb6734622e9734951"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.37, sql.active_record;dur=5.17, cache_generate.active_support;dur=19.33,
cache_write.active_support;dur=0.51, instantiation.active_record;dur=5.36,
start_processing.action_controller;dur=0.01, cache_fetch_hit.active_support;dur=0.00,
render.active_model_serializers;dur=104.08, process_action.action_controller;dur=157.04
X-Content-Type-Options:
- nosniff
X-Frame-Options:
- SAMEORIGIN
X-Permitted-Cross-Domain-Policies:
- none
X-RateLimit-Limit:
- '300'
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-08-16T13:40:00.125180Z'
X-Request-Id:
- 72d97e57-b570-48e7-b52c-561157ff17c6
X-Runtime:
- '0.185710'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -1,15 +1,73 @@
interactions:
- request:
body: username=admin%40localhost&password=hunter2&redirect_uri=urn%3Aietf%3Awg%3Aoauth%3A2.0%3Aoob&grant_type=password&client_id=__MASTODON_PY_TEST_CLIENT_ID&client_secret=__MASTODON_PY_TEST_CLIENT_SECRET&scope=read+write+follow+push
body: null
headers:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Connection:
- keep-alive
User-Agent:
- tests/v311
method: GET
uri: http://localhost:3000/.well-known/oauth-authorization-server
response:
body:
string: '{"issuer":"http://localhost:3000/","authorization_endpoint":"http://localhost:3000/oauth/authorize","token_endpoint":"http://localhost:3000/oauth/token","revocation_endpoint":"http://localhost:3000/oauth/revoke","scopes_supported":["read","profile","write","write:accounts","write:blocks","write:bookmarks","write:conversations","write:favourites","write:filters","write:follows","write:lists","write:media","write:mutes","write:notifications","write:reports","write:statuses","read:accounts","read:blocks","read:bookmarks","read:favourites","read:filters","read:follows","read:lists","read:mutes","read:notifications","read:search","read:statuses","follow","push","admin:read","admin:read:accounts","admin:read:reports","admin:read:domain_allows","admin:read:domain_blocks","admin:read:ip_blocks","admin:read:email_domain_blocks","admin:read:canonical_email_blocks","admin:write","admin:write:accounts","admin:write:reports","admin:write:domain_allows","admin:write:domain_blocks","admin:write:ip_blocks","admin:write:email_domain_blocks","admin:write:canonical_email_blocks"],"response_types_supported":["code"],"response_modes_supported":["query","fragment","form_post"],"grant_types_supported":["authorization_code","password","client_credentials"],"token_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post"],"code_challenge_methods_supported":["S256"],"service_documentation":"https://docs.joinmastodon.org/","app_registration_endpoint":"http://localhost:3000/api/v1/apps"}'
headers:
Cache-Control:
- max-age=0, private, must-revalidate
Content-Length:
- '1503'
Content-Security-Policy:
- 'base-uri ''none''; default-src ''none''; frame-ancestors ''none''; font-src
''self'' http://localhost:3000; img-src ''self'' data: blob: http://localhost:3000;
style-src ''self'' http://localhost:3000 ''nonce-aZIrZUSn8rwsQQrZPFjRZA=='';
media-src ''self'' data: http://localhost:3000; manifest-src ''self'' http://localhost:3000;
form-action ''self''; child-src ''self'' blob: http://localhost:3000; worker-src
''self'' blob: http://localhost:3000; connect-src ''self'' data: blob: http://localhost:3000
ws://localhost:4000 ws://localhost:3035 http://localhost:3035; script-src
''self'' ''unsafe-inline'' ''unsafe-eval'' http://localhost:3000; frame-src
''self'' https: http:'
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"af6a0b2cfc0c377eff2294e0b2f9c31c"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=0.18, cache_generate.active_support;dur=1.08,
cache_write.active_support;dur=0.18, start_processing.action_controller;dur=0.00,
render.active_model_serializers;dur=0.34, process_action.action_controller;dur=20.02
X-Content-Type-Options:
- nosniff
X-Frame-Options:
- SAMEORIGIN
X-Permitted-Cross-Domain-Policies:
- none
X-Request-Id:
- 7862e0e0-94e6-4c59-a4b1-b4d34a55ac71
X-Runtime:
- '0.040423'
X-XSS-Protection:
- '0'
vary:
- Origin
status:
code: 200
message: OK
- request:
body: username=admin%40localhost&password=hunter2&redirect_uri=urn%3Aietf%3Awg%3Aoauth%3A2.0%3Aoob&oauth_info=issuer&oauth_info=authorization_endpoint&oauth_info=token_endpoint&oauth_info=revocation_endpoint&oauth_info=scopes_supported&oauth_info=response_types_supported&oauth_info=response_modes_supported&oauth_info=grant_types_supported&oauth_info=token_endpoint_auth_methods_supported&oauth_info=code_challenge_methods_supported&oauth_info=service_documentation&oauth_info=app_registration_endpoint&grant_type=password&client_id=__MASTODON_PY_TEST_CLIENT_ID&client_secret=__MASTODON_PY_TEST_CLIENT_SECRET&scope=read+write+follow+push
headers:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate, br
Connection:
- keep-alive
Content-Length:
- '227'
- '632'
Content-Type:
- application/x-www-form-urlencoded
User-Agent:
@ -29,7 +87,7 @@ interactions:
Content-Security-Policy:
- 'base-uri ''none''; default-src ''none''; frame-ancestors ''none''; font-src
''self'' http://localhost:3000; img-src ''self'' data: blob: http://localhost:3000;
style-src ''self'' http://localhost:3000 ''nonce-ZpjijjCwTSYQmrGQaN0vSA=='';
style-src ''self'' http://localhost:3000 ''nonce-52SDQ5Z6tgeExJvf5cV6fA=='';
media-src ''self'' data: http://localhost:3000; manifest-src ''self'' http://localhost:3000;
form-action ''self''; child-src ''self'' blob: http://localhost:3000; worker-src
''self'' blob: http://localhost:3000; connect-src ''self'' data: blob: http://localhost:3000
@ -41,10 +99,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.55, cache_generate.active_support;dur=1.16,
cache_write.active_support;dur=0.05, start_processing.action_controller;dur=0.00,
instantiation.active_record;dur=0.13, render.active_model_serializers;dur=0.05,
process_action.action_controller;dur=534.98
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.52, cache_generate.active_support;dur=1.04,
cache_write.active_support;dur=0.04, start_processing.action_controller;dur=0.00,
instantiation.active_record;dur=0.09, render.active_model_serializers;dur=0.05,
process_action.action_controller;dur=700.76
WWW-Authenticate:
- Bearer realm="Doorkeeper", error="invalid_grant", error_description="The provided
authorization grant is invalid, expired, revoked, does not match the redirection
@ -56,9 +114,9 @@ interactions:
X-Permitted-Cross-Domain-Policies:
- none
X-Request-Id:
- be26fac5-19ea-432e-8533-50cc55ffb8a3
- 0529fcde-69e8-4c9a-a23d-09b27ea35fb6
X-Runtime:
- '0.549678'
- '0.721023'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -1,34 +1,29 @@
interactions:
- request:
body: username=mastodonpy_test_2%40localhost&password=5fc638e0e53eafd9c4145b6bb852667d&redirect_uri=urn%3Aietf%3Awg%3Aoauth%3A2.0%3Aoob&grant_type=password&client_id=__MASTODON_PY_TEST_CLIENT_ID&client_secret=__MASTODON_PY_TEST_CLIENT_SECRET&scope=read+write+follow+push
body: null
headers:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Connection:
- keep-alive
Content-Length:
- '264'
Content-Type:
- application/x-www-form-urlencoded
User-Agent:
- tests/v311
method: POST
uri: http://localhost:3000/oauth/token
method: GET
uri: http://localhost:3000/.well-known/oauth-authorization-server
response:
body:
string: '{"access_token":"__MASTODON_PY_TEST_ACCESS_TOKEN_3","token_type":"Bearer","scope":"read
write follow push","created_at":1739490866}'
string: '{"issuer":"http://localhost:3000/","authorization_endpoint":"http://localhost:3000/oauth/authorize","token_endpoint":"http://localhost:3000/oauth/token","revocation_endpoint":"http://localhost:3000/oauth/revoke","scopes_supported":["read","profile","write","write:accounts","write:blocks","write:bookmarks","write:conversations","write:favourites","write:filters","write:follows","write:lists","write:media","write:mutes","write:notifications","write:reports","write:statuses","read:accounts","read:blocks","read:bookmarks","read:favourites","read:filters","read:follows","read:lists","read:mutes","read:notifications","read:search","read:statuses","follow","push","admin:read","admin:read:accounts","admin:read:reports","admin:read:domain_allows","admin:read:domain_blocks","admin:read:ip_blocks","admin:read:email_domain_blocks","admin:read:canonical_email_blocks","admin:write","admin:write:accounts","admin:write:reports","admin:write:domain_allows","admin:write:domain_blocks","admin:write:ip_blocks","admin:write:email_domain_blocks","admin:write:canonical_email_blocks"],"response_types_supported":["code"],"response_modes_supported":["query","fragment","form_post"],"grant_types_supported":["authorization_code","password","client_credentials"],"token_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post"],"code_challenge_methods_supported":["S256"],"service_documentation":"https://docs.joinmastodon.org/","app_registration_endpoint":"http://localhost:3000/api/v1/apps"}'
headers:
Cache-Control:
- no-store
- max-age=0, private, must-revalidate
Content-Length:
- '131'
- '1503'
Content-Security-Policy:
- 'base-uri ''none''; default-src ''none''; frame-ancestors ''none''; font-src
''self'' http://localhost:3000; img-src ''self'' data: blob: http://localhost:3000;
style-src ''self'' http://localhost:3000 ''nonce-IiwEyiWVQsLpMG7OfJSVIw=='';
style-src ''self'' http://localhost:3000 ''nonce-ht8kKhSIlqd5hL4oVQ7avg=='';
media-src ''self'' data: http://localhost:3000; manifest-src ''self'' http://localhost:3000;
form-action ''self''; child-src ''self'' blob: http://localhost:3000; worker-src
''self'' blob: http://localhost:3000; connect-src ''self'' data: blob: http://localhost:3000
@ -38,14 +33,13 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"7ef7f54dec9ca183637d680dc92e11db"
- W/"af6a0b2cfc0c377eff2294e0b2f9c31c"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.87, cache_generate.active_support;dur=0.95,
cache_write.active_support;dur=0.04, start_processing.action_controller;dur=0.01,
instantiation.active_record;dur=0.16, render.active_model_serializers;dur=0.04,
process_action.action_controller;dur=51.21
- cache_read.active_support;dur=0.04, sql.active_record;dur=0.18, cache_generate.active_support;dur=1.06,
cache_write.active_support;dur=0.17, start_processing.action_controller;dur=0.01,
render.active_model_serializers;dur=0.41, process_action.action_controller;dur=22.04
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -53,9 +47,73 @@ interactions:
X-Permitted-Cross-Domain-Policies:
- none
X-Request-Id:
- e4b82840-e7f8-4d1e-9af8-a38e6b096eec
- 07b81216-ddce-4321-9db2-553e72ee7d9f
X-Runtime:
- '0.072068'
- '0.045832'
X-XSS-Protection:
- '0'
vary:
- Origin
status:
code: 200
message: OK
- request:
body: username=mastodonpy_test_2%40localhost&password=5fc638e0e53eafd9c4145b6bb852667d&redirect_uri=urn%3Aietf%3Awg%3Aoauth%3A2.0%3Aoob&oauth_info=issuer&oauth_info=authorization_endpoint&oauth_info=token_endpoint&oauth_info=revocation_endpoint&oauth_info=scopes_supported&oauth_info=response_types_supported&oauth_info=response_modes_supported&oauth_info=grant_types_supported&oauth_info=token_endpoint_auth_methods_supported&oauth_info=code_challenge_methods_supported&oauth_info=service_documentation&oauth_info=app_registration_endpoint&grant_type=password&client_id=__MASTODON_PY_TEST_CLIENT_ID&client_secret=__MASTODON_PY_TEST_CLIENT_SECRET&scope=read+write+follow+push
headers:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate, br
Connection:
- keep-alive
Content-Length:
- '669'
Content-Type:
- application/x-www-form-urlencoded
User-Agent:
- tests/v311
method: POST
uri: http://localhost:3000/oauth/token
response:
body:
string: '{"access_token":"__MASTODON_PY_TEST_ACCESS_TOKEN_3","token_type":"Bearer","scope":"read
write follow push","created_at":1755362087}'
headers:
Cache-Control:
- no-store
Content-Length:
- '131'
Content-Security-Policy:
- 'base-uri ''none''; default-src ''none''; frame-ancestors ''none''; font-src
''self'' http://localhost:3000; img-src ''self'' data: blob: http://localhost:3000;
style-src ''self'' http://localhost:3000 ''nonce-3xwX4IAL09oHww3GFhA27A=='';
media-src ''self'' data: http://localhost:3000; manifest-src ''self'' http://localhost:3000;
form-action ''self''; child-src ''self'' blob: http://localhost:3000; worker-src
''self'' blob: http://localhost:3000; connect-src ''self'' data: blob: http://localhost:3000
ws://localhost:4000 ws://localhost:3035 http://localhost:3035; script-src
''self'' ''unsafe-inline'' ''unsafe-eval'' http://localhost:3000; frame-src
''self'' https: http:'
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"1bfc3ceb3d512286c81b38292f785002"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=3.17, cache_generate.active_support;dur=1.05,
cache_write.active_support;dur=0.05, start_processing.action_controller;dur=0.01,
instantiation.active_record;dur=15.49, render.active_model_serializers;dur=0.04,
process_action.action_controller;dur=65.16
X-Content-Type-Options:
- nosniff
X-Frame-Options:
- SAMEORIGIN
X-Permitted-Cross-Domain-Policies:
- none
X-Request-Id:
- dd3c62d5-6588-47ec-88a6-a9972a3febb9
X-Runtime:
- '0.110323'
X-XSS-Protection:
- '0'
vary:
@ -69,7 +127,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_3
Connection:
@ -80,7 +138,7 @@ interactions:
uri: http://localhost:3000/api/v1/instance/
response:
body:
string: '{"uri":"localhost:3000","title":"Mastodon","short_description":"","description":"","email":"","version":"4.3.0","urls":{"streaming_api":"ws://localhost:4000"},"stats":{"user_count":4,"status_count":1,"domain_count":1},"thumbnail":"http://localhost:3000/packs/media/images/preview-6399aebd96ccf025654e2977454f168f.png","languages":["en"],"registrations":true,"approval_required":false,"invites_enabled":true,"configuration":{"accounts":{"max_featured_tags":10},"statuses":{"max_characters":500,"max_media_attachments":4,"characters_reserved_per_url":23},"media_attachments":{"supported_mime_types":["image/jpeg","image/png","image/gif","image/heic","image/heif","image/webp","image/avif","video/webm","video/mp4","video/quicktime","video/ogg","audio/wave","audio/wav","audio/x-wav","audio/x-pn-wave","audio/vnd.wave","audio/ogg","audio/vorbis","audio/mpeg","audio/mp3","audio/webm","audio/flac","audio/aac","audio/m4a","audio/x-m4a","audio/mp4","audio/3gpp","video/x-ms-asf"],"image_size_limit":16777216,"image_matrix_limit":33177600,"video_size_limit":103809024,"video_frame_rate_limit":120,"video_matrix_limit":8294400},"polls":{"max_options":4,"max_characters_per_option":50,"min_expiration":300,"max_expiration":2629746}},"contact_account":null,"rules":[]}'
string: '{"uri":"localhost:3000","title":"Mastodon","short_description":"","description":"","email":"","version":"4.3.0","urls":{"streaming_api":"ws://localhost:4000"},"stats":{"user_count":4,"status_count":0,"domain_count":0},"thumbnail":"http://localhost:3000/packs/media/images/preview-6399aebd96ccf025654e2977454f168f.png","languages":["en"],"registrations":true,"approval_required":false,"invites_enabled":true,"configuration":{"accounts":{"max_featured_tags":10},"statuses":{"max_characters":500,"max_media_attachments":4,"characters_reserved_per_url":23},"media_attachments":{"supported_mime_types":["image/jpeg","image/png","image/gif","image/heic","image/heif","image/webp","image/avif","video/webm","video/mp4","video/quicktime","video/ogg","audio/wave","audio/wav","audio/x-wav","audio/x-pn-wave","audio/vnd.wave","audio/ogg","audio/vorbis","audio/mpeg","audio/mp3","audio/webm","audio/flac","audio/aac","audio/m4a","audio/x-m4a","audio/mp4","audio/3gpp","video/x-ms-asf"],"image_size_limit":16777216,"image_matrix_limit":33177600,"video_size_limit":103809024,"video_frame_rate_limit":120,"video_matrix_limit":8294400},"polls":{"max_options":4,"max_characters_per_option":50,"min_expiration":300,"max_expiration":2629746}},"contact_account":null,"rules":[]}'
headers:
Cache-Control:
- max-age=300, public, stale-while-revalidate=30, stale-if-error=86400
@ -91,16 +149,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- Thu, 13 Feb 2025 21:55:14 GMT
- Sat, 16 Aug 2025 13:36:32 GMT
ETag:
- W/"dcbca3473aa5bea97c52ad6cca33e333"
- W/"32a76711c89057c2e4cf176fc0a878c6"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.16, sql.active_record;dur=3.48, cache_generate.active_support;dur=13.70,
cache_write.active_support;dur=0.37, instantiation.active_record;dur=5.55,
start_processing.action_controller;dur=0.01, cache_fetch_hit.active_support;dur=0.00,
render.active_model_serializers;dur=19.17, process_action.action_controller;dur=39.48
- cache_read.active_support;dur=0.16, sql.active_record;dur=9.84, cache_generate.active_support;dur=65.78,
cache_write.active_support;dur=0.53, instantiation.active_record;dur=4.26,
start_processing.action_controller;dur=0.00, cache_fetch_hit.active_support;dur=0.00,
render.active_model_serializers;dur=78.44, process_action.action_controller;dur=100.64
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -112,11 +170,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.790532Z'
- '2025-08-16T13:40:00.274053Z'
X-Request-Id:
- f54e1ef1-9719-43d3-affd-bbf09545b8e1
- 441723d1-34bc-4956-8085-b6a252309972
X-Runtime:
- '0.056381'
- '0.123616'
X-XSS-Protection:
- '0'
vary:
@ -130,7 +188,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_3
Connection:
@ -138,28 +196,30 @@ interactions:
User-Agent:
- tests/v311
method: GET
uri: http://localhost:3000/api/v1/accounts/verify_credentials
uri: http://localhost:3000/api/v2/instance/
response:
body:
string: '{"id":"113998801391516277","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"source":{"privacy":"public","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":true,"indexable":true},"emojis":[],"roles":[],"fields":[],"role":{"id":"-99","name":"","permissions":"65536","color":"","highlighted":false}}'
string: '{"domain":"localhost:3000","title":"Mastodon","version":"4.3.0","source_url":"https://github.com/mastodon/mastodon","description":"","usage":{"users":{"active_month":0}},"thumbnail":{"url":"http://localhost:3000/packs/media/images/preview-6399aebd96ccf025654e2977454f168f.png"},"icon":[{"src":"http://localhost:3000/packs/media/icons/android-chrome-36x36-4c61fdb42936428af85afdbf8c6a45a8.png","size":"36x36"},{"src":"http://localhost:3000/packs/media/icons/android-chrome-48x48-2027aead76dc906c981043d658a8258d.png","size":"48x48"},{"src":"http://localhost:3000/packs/media/icons/android-chrome-72x72-799d90b81f5b28cea7355a0c0b356381.png","size":"72x72"},{"src":"http://localhost:3000/packs/media/icons/android-chrome-96x96-c2dfcfa1268c56e59edddfe20d818b91.png","size":"96x96"},{"src":"http://localhost:3000/packs/media/icons/android-chrome-144x144-ff3110f7772743bdd0c1c47fb7b2d4e0.png","size":"144x144"},{"src":"http://localhost:3000/packs/media/icons/android-chrome-192x192-eddc1ed540e97b926202b7b857989d60.png","size":"192x192"},{"src":"http://localhost:3000/packs/media/icons/android-chrome-256x256-7b2b43926019259f7c9ddee627d80a0f.png","size":"256x256"},{"src":"http://localhost:3000/packs/media/icons/android-chrome-384x384-72068ed50b02828fc505a8d69b321dea.png","size":"384x384"},{"src":"http://localhost:3000/packs/media/icons/android-chrome-512x512-ccb53c9fcbb5f61bf741cc54998318f0.png","size":"512x512"}],"languages":["en"],"configuration":{"urls":{"streaming":"ws://localhost:4000","status":null},"vapid":{"public_key":"BM0khLcvEe3sNx-QO2PB1hqB-24BqdAh0_kG3nZKAHj348StAFL2EHzK1JJTplzKhmMoz3Z_cNfW6QY8ibUzdF4="},"accounts":{"max_featured_tags":10,"max_pinned_statuses":5},"statuses":{"max_characters":500,"max_media_attachments":4,"characters_reserved_per_url":23},"media_attachments":{"supported_mime_types":["image/jpeg","image/png","image/gif","image/heic","image/heif","image/webp","image/avif","video/webm","video/mp4","video/quicktime","video/ogg","audio/wave","audio/wav","audio/x-wav","audio/x-pn-wave","audio/vnd.wave","audio/ogg","audio/vorbis","audio/mpeg","audio/mp3","audio/webm","audio/flac","audio/aac","audio/m4a","audio/x-m4a","audio/mp4","audio/3gpp","video/x-ms-asf"],"image_size_limit":16777216,"image_matrix_limit":33177600,"video_size_limit":103809024,"video_frame_rate_limit":120,"video_matrix_limit":8294400},"polls":{"max_options":4,"max_characters_per_option":50,"min_expiration":300,"max_expiration":2629746},"translation":{"enabled":false}},"registrations":{"enabled":true,"approval_required":false,"message":null,"url":null},"api_versions":{"mastodon":2},"contact":{"email":"","account":null},"rules":[]}'
headers:
Cache-Control:
- private, no-store
- max-age=300, public, stale-while-revalidate=30, stale-if-error=86400
Content-Length:
- '1016'
- '2642'
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'; form-action 'none'
Content-Type:
- application/json; charset=utf-8
Date:
- Sat, 16 Aug 2025 13:36:32 GMT
ETag:
- W/"fff57288f339632740cf7f7bc97987ab"
- W/"07121412715576bdb6734622e9734951"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=1.16, cache_generate.active_support;dur=1.62,
cache_write.active_support;dur=0.11, instantiation.active_record;dur=0.34,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.25,
process_action.action_controller;dur=22.79
- cache_read.active_support;dur=0.15, sql.active_record;dur=1.59, cache_generate.active_support;dur=6.13,
cache_write.active_support;dur=0.39, instantiation.active_record;dur=0.17,
start_processing.action_controller;dur=0.00, cache_fetch_hit.active_support;dur=0.00,
render.active_model_serializers;dur=17.38, process_action.action_controller;dur=37.84
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -171,11 +231,70 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.854444Z'
- '2025-08-16T13:40:00.423192Z'
X-Request-Id:
- 14824c77-44fa-4321-95fe-9dd65a4b1357
- 15968748-da12-48f0-a835-1d1b7771207f
X-Runtime:
- '0.037582'
- '0.070731'
X-XSS-Protection:
- '0'
vary:
- Accept, Origin
status:
code: 200
message: OK
- request:
body: null
headers:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_3
Connection:
- keep-alive
User-Agent:
- tests/v311
method: GET
uri: http://localhost:3000/api/v1/accounts/verify_credentials
response:
body:
string: '{"id":"115038701837652014","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-08-16T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":null,"hide_collections":null,"noindex":false,"source":{"privacy":"public","sensitive":false,"language":null,"note":"","fields":[],"follow_requests_count":0,"hide_collections":null,"discoverable":true,"indexable":true},"emojis":[],"roles":[],"fields":[],"role":{"id":"-99","name":"","permissions":"65536","color":"","highlighted":false}}'
headers:
Cache-Control:
- private, no-store
Content-Length:
- '1008'
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'; form-action 'none'
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"25e1ba2b980812f2d4d8ae98b5043658"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=7.95, cache_generate.active_support;dur=1.84,
cache_write.active_support;dur=0.12, instantiation.active_record;dur=17.81,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=8.64,
render.active_model_serializers;dur=24.03, process_action.action_controller;dur=79.31
X-Content-Type-Options:
- nosniff
X-Frame-Options:
- SAMEORIGIN
X-Permitted-Cross-Domain-Policies:
- none
X-RateLimit-Limit:
- '300'
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-08-16T13:40:00.512126Z'
X-Request-Id:
- ef6aba3d-735f-4ec2-b6c0-52971d169c4b
X-Runtime:
- '0.104431'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -20,10 +20,10 @@ interactions:
uri: http://localhost:3000/api/v1/statuses
response:
body:
string: '{"id":"113998807253126160","created_at":"2025-02-13T21:55:53.253Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/113998807253126160","url":"http://localhost:3000/@mastodonpy_test/113998807253126160","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eToot!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":0,"statuses_count":2,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
string: '{"id":"115033976869039171","created_at":"2025-08-15T17:33:08.066Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/115033976869039171","url":"http://localhost:3000/@mastodonpy_test/115033976869039171","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eToot!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":0,"statuses_count":2,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
@ -34,14 +34,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"12fb98c813475e33edf6fe8727bfa8be"
- W/"8d69eddea61df0c8ba7b2d675d817c4b"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.06, sql.active_record;dur=10.59, cache_generate.active_support;dur=3.16,
cache_write.active_support;dur=0.15, instantiation.active_record;dur=0.54,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=7.27,
render.active_model_serializers;dur=12.84, process_action.action_controller;dur=52.14
- cache_read.active_support;dur=0.05, sql.active_record;dur=14.65, cache_generate.active_support;dur=2.80,
cache_write.active_support;dur=0.13, instantiation.active_record;dur=0.49,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=5.98,
render.active_model_serializers;dur=10.05, process_action.action_controller;dur=52.41
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -51,13 +51,13 @@ interactions:
X-RateLimit-Limit:
- '300'
X-RateLimit-Remaining:
- '289'
- '288'
X-RateLimit-Reset:
- '2025-02-14T00:00:00.281509Z'
- '2025-08-15T18:00:00.093613Z'
X-Request-Id:
- 6c3c6118-e058-43a8-a1a4-ef9c0629b633
- 5fe30a0b-8487-4dd8-82d2-b52f807ca202
X-Runtime:
- '0.068174'
- '0.072808'
X-XSS-Protection:
- '0'
vary:
@ -66,12 +66,12 @@ interactions:
code: 200
message: OK
- request:
body: '{"home": {"last_read_id": "113998807253126160"}}'
body: '{"home": {"last_read_id": "115033976869039171"}}'
headers:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -86,7 +86,7 @@ interactions:
uri: http://localhost:3000/api/v1/markers
response:
body:
string: '{"home":{"last_read_id":"113998807253126160","version":1,"updated_at":"2025-02-13T21:55:53.380Z"}}'
string: '{"home":{"last_read_id":"115033976869039171","version":1,"updated_at":"2025-08-15T17:33:08.185Z"}}'
headers:
Cache-Control:
- private, no-store
@ -97,14 +97,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"13c640591825c1d276bc875f493788d6"
- W/"cfe46dabb2d5160fee6ea9b207e232eb"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=6.24, cache_generate.active_support;dur=1.06,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.42,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=13.06,
render.active_model_serializers;dur=0.13, process_action.action_controller;dur=33.47
- cache_read.active_support;dur=0.02, sql.active_record;dur=7.81, cache_generate.active_support;dur=1.09,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.31,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=14.09,
render.active_model_serializers;dur=0.13, process_action.action_controller;dur=36.85
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -116,11 +116,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.367480Z'
- '2025-08-15T17:35:00.173563Z'
X-Request-Id:
- 7770ed15-85a6-4289-bb9e-aade54ec6f02
- 8dd11296-81be-4ad5-a518-6754561c0d70
X-Runtime:
- '0.053248'
- '0.061712'
X-XSS-Protection:
- '0'
vary:
@ -134,7 +134,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -145,7 +145,7 @@ interactions:
uri: http://localhost:3000/api/v1/markers?timeline%5B%5D=home
response:
body:
string: '{"home":{"last_read_id":"113998807253126160","version":1,"updated_at":"2025-02-13T21:55:53.380Z"}}'
string: '{"home":{"last_read_id":"115033976869039171","version":1,"updated_at":"2025-08-15T17:33:08.185Z"}}'
headers:
Cache-Control:
- private, no-store
@ -156,14 +156,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"13c640591825c1d276bc875f493788d6"
- W/"cfe46dabb2d5160fee6ea9b207e232eb"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.73, cache_generate.active_support;dur=0.95,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.40,
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.68, cache_generate.active_support;dur=0.93,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.29,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.14,
process_action.action_controller;dur=20.12
process_action.action_controller;dur=23.57
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -175,11 +175,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.421810Z'
- '2025-08-15T17:35:00.244394Z'
X-Request-Id:
- ec00c5a3-abb0-443c-a6d5-8d837abe10e3
- e12d492d-6487-42aa-9a8d-b77f58e22b03
X-Runtime:
- '0.034662'
- '0.047290'
X-XSS-Protection:
- '0'
vary:
@ -193,7 +193,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -203,13 +203,13 @@ interactions:
User-Agent:
- tests/v311
method: DELETE
uri: http://localhost:3000/api/v1/statuses/113998807253126160
uri: http://localhost:3000/api/v1/statuses/115033976869039171
response:
body:
string: '{"id":"113998807253126160","created_at":"2025-02-13T21:55:53.253Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/113998807253126160","url":"http://localhost:3000/@mastodonpy_test/113998807253126160","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"text":"Toot!","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
string: '{"id":"115033976869039171","created_at":"2025-08-15T17:33:08.066Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/115033976869039171","url":"http://localhost:3000/@mastodonpy_test/115033976869039171","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"text":"Toot!","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
@ -220,14 +220,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"f0f7bcdfb33f50e42af06dfc2a5bec62"
- W/"fa0bd01c9455005d355895934f9f21a2"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.05, sql.active_record;dur=6.32, cache_generate.active_support;dur=2.68,
cache_write.active_support;dur=0.15, instantiation.active_record;dur=0.83,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=9.10,
render.active_model_serializers;dur=13.65, process_action.action_controller;dur=48.94
- cache_read.active_support;dur=0.06, sql.active_record;dur=7.41, cache_generate.active_support;dur=3.07,
cache_write.active_support;dur=0.17, instantiation.active_record;dur=0.82,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=4.58,
render.active_model_serializers;dur=14.22, process_action.action_controller;dur=46.88
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -239,11 +239,11 @@ interactions:
X-RateLimit-Remaining:
- '29'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.460530Z'
- '2025-08-15T18:00:00.297561Z'
X-Request-Id:
- 974b38d7-155e-455d-822d-373ba8dbc7cd
- 6a6ef1c7-98ec-4494-aae3-fba459954e1a
X-Runtime:
- '0.063311'
- '0.067105'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -1,13 +1,13 @@
interactions:
- request:
body: !!binary |
LS03YTMyNmY2Njg2ZjVkNTNiMjY5YWNiNDFmZTFkNDg5OA0KQ29udGVudC1EaXNwb3NpdGlvbjog
Zm9ybS1kYXRhOyBuYW1lPSJkZXNjcmlwdGlvbiINCg0KbWUgd2hlbiBhIGNhdA0KLS03YTMyNmY2
Njg2ZjVkNTNiMjY5YWNiNDFmZTFkNDg5OA0KQ29udGVudC1EaXNwb3NpdGlvbjogZm9ybS1kYXRh
OyBuYW1lPSJmb2N1cyINCg0KLTAuNSwwLjMNCi0tN2EzMjZmNjY4NmY1ZDUzYjI2OWFjYjQxZmUx
ZDQ4OTgNCkNvbnRlbnQtRGlzcG9zaXRpb246IGZvcm0tZGF0YTsgbmFtZT0iZmlsZSI7IGZpbGVu
YW1lPSJtYXN0b2RvbnB5dXBsb2FkXzE3Mzk0ODM3NjQuNjIzMDE4NV81ZGIwMmEzYTIyOTY0OTJk
ODZhNzU2MDA0OTVmYjNkYS5tcDQiDQpDb250ZW50LVR5cGU6IHZpZGVvL21wNA0KDQoAAAAYZnR5
LS1hZDA0ZjIzZTQ0NmMyNzM1Y2QwY2U4MzlkMGY3ZjJlZA0KQ29udGVudC1EaXNwb3NpdGlvbjog
Zm9ybS1kYXRhOyBuYW1lPSJkZXNjcmlwdGlvbiINCg0KbWUgd2hlbiBhIGNhdA0KLS1hZDA0ZjIz
ZTQ0NmMyNzM1Y2QwY2U4MzlkMGY3ZjJlZA0KQ29udGVudC1EaXNwb3NpdGlvbjogZm9ybS1kYXRh
OyBuYW1lPSJmb2N1cyINCg0KLTAuNSwwLjMNCi0tYWQwNGYyM2U0NDZjMjczNWNkMGNlODM5ZDBm
N2YyZWQNCkNvbnRlbnQtRGlzcG9zaXRpb246IGZvcm0tZGF0YTsgbmFtZT0iZmlsZSI7IGZpbGVu
YW1lPSJtYXN0b2RvbnB5dXBsb2FkXzE3NTUyNzkyMDIuMzU4NTY2OF9lY2ZhMDljNDcyOTc0NGFm
OTY1N2QxNzg4YTM5MTYyNi5tcDQiDQpDb250ZW50LVR5cGU6IHZpZGVvL21wNA0KDQoAAAAYZnR5
cG1wNDIAAAAAaXNvbW1wNDIAABWubW9vdgAAAGxtdmhkAAAAAN8tRgLfLUYCAAFfkAAKBmgAAQAA
AQAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAwAACEt0cmFrAAAAXHRraGQAAAAH3y1GA98tRgMAAAABAAAAAAAK
@ -35021,9 +35021,9 @@ interactions:
r25Zpp2WUjLR3iHLbaTq6sgK05q7BcngjsocYzFFlERnZ69NwXAtTN6Um/L/ISP/PDIvwH+mJxop
3kjTO31+Mdo3/rjb2S5VuR4Z/3z/yU2X+P0uxTlAe+5nVwxPzzUnbjPJ0/qeihMHMxQWvFNCdy7V
ShDK+wvQBUjSixW0ujOA+uUGx3AreoZhwHJqenCIveIC46NFllb4N9ww0SrbvyTkWdmhi2gmYAAA
AAEKDQotLTdhMzI2ZjY2ODZmNWQ1M2IyNjlhY2I0MWZlMWQ0ODk4DQpDb250ZW50LURpc3Bvc2l0
AAEKDQotLWFkMDRmMjNlNDQ2YzI3MzVjZDBjZTgzOWQwZjdmMmVkDQpDb250ZW50LURpc3Bvc2l0
aW9uOiBmb3JtLWRhdGE7IG5hbWU9InRodW1ibmFpbCI7IGZpbGVuYW1lPSJtYXN0b2RvbnB5dXBs
b2FkXzE3Mzk0ODM3NjQuNjIzMTIzNl9hYThmNGJhZWQ4Yzk0MjU1OWNlNTFhNjk0YWJkZjNjMS5q
b2FkXzE3NTUyNzkyMDIuMzU4NzA0OF8zNjI2NWQwYjk0NjY0ZDY3OTAyYjllOTU0NWFjN2E4Mi5q
cGciDQpDb250ZW50LVR5cGU6IGltYWdlL2pwZWcNCg0K/9j/4AAQSkZJRgABAQAAAQABAAD/4gKg
SUNDX1BST0ZJTEUAAQEAAAKQbGNtcwQwAABtbnRyUkdCIFhZWiAAAAAAAAAAAAAAAABhY3NwQVBQ
TAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLWxjbXMAAAAAAAAAAAAAAAAAAAAA
@ -35498,12 +35498,12 @@ interactions:
a8qiytgPSFd303FNYyRalj2WjajkwhI9o/yqXk7oqZBKgurLSgqNqLAqt0puaZq5xeFKVwuynHY6
0lFZmjsSgpz0/YjQtPJAr2amp/oqf6KCkkoi6sUTmfnXeZ5qUPImhkYMhww60+izCtWlrFOshM0e
d/mU1a27R1TTB91BH7gdym2Fgi7vVveGB+KhAwvu82i5voYn9+0miV456UxiEYTagvxpW8ZXs/F/
/9kNCi0tN2EzMjZmNjY4NmY1ZDUzYjI2OWFjYjQxZmUxZDQ4OTgtLQ0K
/9kNCi0tYWQwNGYyM2U0NDZjMjczNWNkMGNlODM5ZDBmN2YyZWQtLQ0K
headers:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -35511,14 +35511,14 @@ interactions:
Content-Length:
- '2023371'
Content-Type:
- multipart/form-data; boundary=7a326f6686f5d53b269acb41fe1d4898
- multipart/form-data; boundary=ad04f23e446c2735cd0ce839d0f7f2ed
User-Agent:
- tests/v311
method: POST
uri: http://localhost:3000/api/v2/media
response:
body:
string: '{"id":"113998808036662957","type":"video","url":null,"preview_url":"http://localhost:3000/system/media_attachments/thumbnails/113/998/808/036/662/957/original/d0109334cbbd96f2.jpg","remote_url":null,"preview_remote_url":null,"text_url":null,"meta":{"colors":{"background":"#dcf4fd","foreground":"#232220","accent":"#47372d"},"original":{"width":640,"height":640,"frame_rate":"30/1","duration":7.3,"bitrate":2187124},"small":{"width":400,"height":400,"size":"400x400","aspect":1.0},"focus":{"x":-0.5,"y":0.3}},"description":"me
string: '{"id":"115033977854064673","type":"video","url":null,"preview_url":"http://localhost:3000/system/media_attachments/thumbnails/115/033/977/854/064/673/original/691be305aa78ca8e.jpg","remote_url":null,"preview_remote_url":null,"text_url":null,"meta":{"colors":{"background":"#dcf4fd","foreground":"#232220","accent":"#47372d"},"original":{"width":640,"height":640,"frame_rate":"30/1","duration":7.3,"bitrate":2187124},"small":{"width":400,"height":400,"size":"400x400","aspect":1.0},"focus":{"x":-0.5,"y":0.3}},"description":"me
when a cat","blurhash":"UPNKI$xbloIA9ZoI.8RjK-oy%NkD%hW?i^t6"}'
headers:
Cache-Control:
@ -35532,10 +35532,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=3.59, cache_generate.active_support;dur=0.94,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=5.58,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=6.96,
render.active_model_serializers;dur=0.72, process_action.action_controller;dur=568.42
- cache_read.active_support;dur=0.03, sql.active_record;dur=5.61, cache_generate.active_support;dur=1.05,
cache_write.active_support;dur=0.09, instantiation.active_record;dur=0.31,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=8.81,
render.active_model_serializers;dur=0.43, process_action.action_controller;dur=713.91
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -35547,11 +35547,11 @@ interactions:
X-RateLimit-Remaining:
- '29'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.663972Z'
- '2025-08-15T18:00:00.411018Z'
X-Request-Id:
- 66fcc29f-a252-4544-baec-287d5338cb87
- cc421e53-5c0b-47ff-a47e-5f7c6dca0fee
X-Runtime:
- '0.587375'
- '0.739522'
X-XSS-Protection:
- '0'
vary:
@ -35565,7 +35565,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -35573,10 +35573,10 @@ interactions:
User-Agent:
- tests/v311
method: GET
uri: http://localhost:3000/api/v1/media/113998808036662957
uri: http://localhost:3000/api/v1/media/115033977854064673
response:
body:
string: '{"id":"113998808036662957","type":"video","url":"http://localhost:3000/system/media_attachments/files/113/998/808/036/662/957/original/8000a19533cc5eeb.mp4","preview_url":"http://localhost:3000/system/media_attachments/thumbnails/113/998/808/036/662/957/original/d0109334cbbd96f2.jpg","remote_url":null,"preview_remote_url":null,"text_url":null,"meta":{"focus":{"x":-0.5,"y":0.3},"colors":{"background":"#dcf4fd","foreground":"#232220","accent":"#47372d"},"original":{"width":640,"height":640,"frame_rate":"30/1","duration":7.3,"bitrate":2191346},"small":{"width":400,"height":400,"size":"400x400","aspect":1.0}},"description":"me
string: '{"id":"115033977854064673","type":"video","url":"http://localhost:3000/system/media_attachments/files/115/033/977/854/064/673/original/f079fa9570680d08.mp4","preview_url":"http://localhost:3000/system/media_attachments/thumbnails/115/033/977/854/064/673/original/691be305aa78ca8e.jpg","remote_url":null,"preview_remote_url":null,"text_url":null,"meta":{"focus":{"x":-0.5,"y":0.3},"colors":{"background":"#dcf4fd","foreground":"#232220","accent":"#47372d"},"original":{"width":640,"height":640,"frame_rate":"30/1","duration":7.3,"bitrate":2191346},"small":{"width":400,"height":400,"size":"400x400","aspect":1.0}},"description":"me
when a cat","blurhash":"UPNKI$xbloIA9ZoI.8RjK-oy%NkD%hW?i^t6"}'
headers:
Cache-Control:
@ -35588,14 +35588,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"bdab89f8f3681e29a17b27da1d5e1a16"
- W/"8e68da14058dfe5e1a861e096660b730"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.59, cache_generate.active_support;dur=1.01,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.25,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.56,
process_action.action_controller;dur=18.76
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.58, cache_generate.active_support;dur=0.89,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.27,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.61,
process_action.action_controller;dur=21.85
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -35607,11 +35607,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.264198Z'
- '2025-08-15T17:35:00.162735Z'
X-Request-Id:
- 81e92b44-c17a-4dfb-a5bc-f9b973b9c54a
- ddc98fe2-7d68-4230-bddc-1dd89df51eec
X-Runtime:
- '0.033567'
- '0.042359'
X-XSS-Protection:
- '0'
vary:
@ -35620,12 +35620,12 @@ interactions:
code: 200
message: OK
- request:
body: status=LOL+check+this+out&sensitive=1&media_ids%5B%5D=113998808036662957
body: status=LOL+check+this+out&sensitive=1&media_ids%5B%5D=115033977854064673
headers:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -35640,11 +35640,11 @@ interactions:
uri: http://localhost:3000/api/v1/statuses
response:
body:
string: '{"id":"113998808698710287","created_at":"2025-02-13T21:56:15.309Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":true,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/113998808698710287","url":"http://localhost:3000/@mastodonpy_test/113998808698710287","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eLOL
string: '{"id":"115033978517347450","created_at":"2025-08-15T17:33:33.217Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":true,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/115033978517347450","url":"http://localhost:3000/@mastodonpy_test/115033978517347450","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eLOL
check this out\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":0,"statuses_count":2,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[{"id":"113998808036662957","type":"video","url":"http://localhost:3000/system/media_attachments/files/113/998/808/036/662/957/original/8000a19533cc5eeb.mp4","preview_url":"http://localhost:3000/system/media_attachments/thumbnails/113/998/808/036/662/957/original/d0109334cbbd96f2.jpg","remote_url":null,"preview_remote_url":null,"text_url":null,"meta":{"focus":{"x":-0.5,"y":0.3},"colors":{"background":"#dcf4fd","foreground":"#232220","accent":"#47372d"},"original":{"width":640,"height":640,"frame_rate":"30/1","duration":7.3,"bitrate":2191346},"small":{"width":400,"height":400,"size":"400x400","aspect":1.0}},"description":"me
test suite","website":null},"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":0,"statuses_count":2,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[{"id":"115033977854064673","type":"video","url":"http://localhost:3000/system/media_attachments/files/115/033/977/854/064/673/original/f079fa9570680d08.mp4","preview_url":"http://localhost:3000/system/media_attachments/thumbnails/115/033/977/854/064/673/original/691be305aa78ca8e.jpg","remote_url":null,"preview_remote_url":null,"text_url":null,"meta":{"focus":{"x":-0.5,"y":0.3},"colors":{"background":"#dcf4fd","foreground":"#232220","accent":"#47372d"},"original":{"width":640,"height":640,"frame_rate":"30/1","duration":7.3,"bitrate":2191346},"small":{"width":400,"height":400,"size":"400x400","aspect":1.0}},"description":"me
when a cat","blurhash":"UPNKI$xbloIA9ZoI.8RjK-oy%NkD%hW?i^t6"}],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
@ -35656,15 +35656,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"3a2c9d6d15321e0b896fc5edac2ec808"
- W/"d2083062cfd8241b01328859fac056af"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.05, sql.active_record;dur=13.79, cache_generate.active_support;dur=5.78,
cache_write.active_support;dur=0.12, instantiation.active_record;dur=0.46,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=5.71,
cache_delete.active_support;dur=0.02, render.active_model_serializers;dur=13.80,
process_action.action_controller;dur=49.06
- cache_read.active_support;dur=0.05, sql.active_record;dur=13.87, cache_generate.active_support;dur=2.74,
cache_write.active_support;dur=0.12, instantiation.active_record;dur=0.47,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=6.72,
cache_delete.active_support;dur=0.02, render.active_model_serializers;dur=10.57,
process_action.action_controller;dur=52.86
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -35674,13 +35674,13 @@ interactions:
X-RateLimit-Limit:
- '300'
X-RateLimit-Remaining:
- '287'
- '286'
X-RateLimit-Reset:
- '2025-02-14T00:00:00.336590Z'
- '2025-08-15T18:00:00.244216Z'
X-Request-Id:
- 04dba40d-64e0-4d6d-b3ae-c06f3094ce9b
- 2d4f7cd3-0b0c-432c-b264-e93d37febaa8
X-Runtime:
- '0.063493'
- '0.071446'
X-XSS-Protection:
- '0'
vary:
@ -35694,7 +35694,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -35704,14 +35704,14 @@ interactions:
User-Agent:
- tests/v311
method: DELETE
uri: http://localhost:3000/api/v1/statuses/113998808698710287
uri: http://localhost:3000/api/v1/statuses/115033978517347450
response:
body:
string: '{"id":"113998808698710287","created_at":"2025-02-13T21:56:15.309Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":true,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/113998808698710287","url":"http://localhost:3000/@mastodonpy_test/113998808698710287","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"text":"LOL
string: '{"id":"115033978517347450","created_at":"2025-08-15T17:33:33.217Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":true,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/115033978517347450","url":"http://localhost:3000/@mastodonpy_test/115033978517347450","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"text":"LOL
check this out","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[{"id":"113998808036662957","type":"video","url":"http://localhost:3000/system/media_attachments/files/113/998/808/036/662/957/original/8000a19533cc5eeb.mp4","preview_url":"http://localhost:3000/system/media_attachments/thumbnails/113/998/808/036/662/957/original/d0109334cbbd96f2.jpg","remote_url":null,"preview_remote_url":null,"text_url":null,"meta":{"focus":{"x":-0.5,"y":0.3},"colors":{"background":"#dcf4fd","foreground":"#232220","accent":"#47372d"},"original":{"width":640,"height":640,"frame_rate":"30/1","duration":7.3,"bitrate":2191346},"small":{"width":400,"height":400,"size":"400x400","aspect":1.0}},"description":"me
test suite","website":null},"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[{"id":"115033977854064673","type":"video","url":"http://localhost:3000/system/media_attachments/files/115/033/977/854/064/673/original/f079fa9570680d08.mp4","preview_url":"http://localhost:3000/system/media_attachments/thumbnails/115/033/977/854/064/673/original/691be305aa78ca8e.jpg","remote_url":null,"preview_remote_url":null,"text_url":null,"meta":{"focus":{"x":-0.5,"y":0.3},"colors":{"background":"#dcf4fd","foreground":"#232220","accent":"#47372d"},"original":{"width":640,"height":640,"frame_rate":"30/1","duration":7.3,"bitrate":2191346},"small":{"width":400,"height":400,"size":"400x400","aspect":1.0}},"description":"me
when a cat","blurhash":"UPNKI$xbloIA9ZoI.8RjK-oy%NkD%hW?i^t6"}],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
@ -35723,14 +35723,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"6262cb1aafaabb00c0e078214aadecb0"
- W/"7f751f75c8e3934ce7b936be53020b83"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.06, sql.active_record;dur=7.40, cache_generate.active_support;dur=7.67,
cache_write.active_support;dur=0.15, instantiation.active_record;dur=0.98,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=6.00,
render.active_model_serializers;dur=61.17, process_action.action_controller;dur=100.41
- cache_read.active_support;dur=0.05, sql.active_record;dur=7.11, cache_generate.active_support;dur=4.66,
cache_write.active_support;dur=0.14, instantiation.active_record;dur=0.73,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=4.49,
render.active_model_serializers;dur=32.38, process_action.action_controller;dur=63.39
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -35742,11 +35742,11 @@ interactions:
X-RateLimit-Remaining:
- '29'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.399453Z'
- '2025-08-15T18:00:00.326348Z'
X-Request-Id:
- 3f0d6987-492f-438e-b896-7b0901dc3f0b
- de37ba85-4988-4e15-9771-80c84945d1ef
X-Runtime:
- '0.116244'
- '0.082920'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -1,13 +1,13 @@
interactions:
- request:
body: !!binary |
LS04ODMzMGZlYzZmMjVjNzEyYzU5MjI5M2Q2YmJhYzQ2Zg0KQ29udGVudC1EaXNwb3NpdGlvbjog
Zm9ybS1kYXRhOyBuYW1lPSJkZXNjcmlwdGlvbiINCg0KbWUgd2hlbiBhIGNhdA0KLS04ODMzMGZl
YzZmMjVjNzEyYzU5MjI5M2Q2YmJhYzQ2Zg0KQ29udGVudC1EaXNwb3NpdGlvbjogZm9ybS1kYXRh
OyBuYW1lPSJmb2N1cyINCg0KLTAuNSwwLjMNCi0tODgzMzBmZWM2ZjI1YzcxMmM1OTIyOTNkNmJi
YWM0NmYNCkNvbnRlbnQtRGlzcG9zaXRpb246IGZvcm0tZGF0YTsgbmFtZT0iZmlsZSI7IGZpbGVu
YW1lPSJtYXN0b2RvbnB5dXBsb2FkXzE3Mzk0ODM3NzYuMjU2OTAwM18xOWEwYjFlNGY2NzY0ZWM0
YTE3NWYyNWFhYjc3NzY5OS5tcDQiDQpDb250ZW50LVR5cGU6IHZpZGVvL21wNA0KDQoAAAAYZnR5
LS0xMzY2M2QwY2Q3M2Q0MzYzNDNhMzVlMzg5MWQ0MmIzYg0KQ29udGVudC1EaXNwb3NpdGlvbjog
Zm9ybS1kYXRhOyBuYW1lPSJkZXNjcmlwdGlvbiINCg0KbWUgd2hlbiBhIGNhdA0KLS0xMzY2M2Qw
Y2Q3M2Q0MzYzNDNhMzVlMzg5MWQ0MmIzYg0KQ29udGVudC1EaXNwb3NpdGlvbjogZm9ybS1kYXRh
OyBuYW1lPSJmb2N1cyINCg0KLTAuNSwwLjMNCi0tMTM2NjNkMGNkNzNkNDM2MzQzYTM1ZTM4OTFk
NDJiM2INCkNvbnRlbnQtRGlzcG9zaXRpb246IGZvcm0tZGF0YTsgbmFtZT0iZmlsZSI7IGZpbGVu
YW1lPSJtYXN0b2RvbnB5dXBsb2FkXzE3NTUyNzkyMTcuNDIxMzY2Ml8xZTcyM2U5OTY3YWE0Zjg2
Yjg2YWM5NDY2MjRiZmY5Mi5tcDQiDQpDb250ZW50LVR5cGU6IHZpZGVvL21wNA0KDQoAAAAYZnR5
cG1wNDIAAAAAaXNvbW1wNDIAABWubW9vdgAAAGxtdmhkAAAAAN8tRgLfLUYCAAFfkAAKBmgAAQAA
AQAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAwAACEt0cmFrAAAAXHRraGQAAAAH3y1GA98tRgMAAAABAAAAAAAK
@ -35021,12 +35021,12 @@ interactions:
r25Zpp2WUjLR3iHLbaTq6sgK05q7BcngjsocYzFFlERnZ69NwXAtTN6Um/L/ISP/PDIvwH+mJxop
3kjTO31+Mdo3/rjb2S5VuR4Z/3z/yU2X+P0uxTlAe+5nVwxPzzUnbjPJ0/qeihMHMxQWvFNCdy7V
ShDK+wvQBUjSixW0ujOA+uUGx3AreoZhwHJqenCIveIC46NFllb4N9ww0SrbvyTkWdmhi2gmYAAA
AAEKDQotLTg4MzMwZmVjNmYyNWM3MTJjNTkyMjkzZDZiYmFjNDZmLS0NCg==
AAEKDQotLTEzNjYzZDBjZDczZDQzNjM0M2EzNWUzODkxZDQyYjNiLS0NCg==
headers:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -35034,14 +35034,14 @@ interactions:
Content-Length:
- '1996183'
Content-Type:
- multipart/form-data; boundary=88330fec6f25c712c592293d6bbac46f
- multipart/form-data; boundary=13663d0cd73d436343a35e3891d42b3b
User-Agent:
- tests/v311
method: POST
uri: http://localhost:3000/api/v2/media
response:
body:
string: '{"id":"113998808783124423","type":"video","url":null,"preview_url":"http://localhost:3000/system/media_attachments/files/113/998/808/783/124/423/small/7fa1dccf682bf52d.png","remote_url":null,"preview_remote_url":null,"text_url":null,"meta":{"original":{"width":640,"height":640,"frame_rate":"30/1","duration":7.3,"bitrate":2187124},"small":{"width":640,"height":640,"size":"640x640","aspect":1.0},"focus":{"x":-0.5,"y":0.3}},"description":"me
string: '{"id":"115033978819698491","type":"video","url":null,"preview_url":"http://localhost:3000/system/media_attachments/files/115/033/978/819/698/491/small/e1e3f37c9c110da4.png","remote_url":null,"preview_remote_url":null,"text_url":null,"meta":{"original":{"width":640,"height":640,"frame_rate":"30/1","duration":7.3,"bitrate":2187124},"small":{"width":640,"height":640,"size":"640x640","aspect":1.0},"focus":{"x":-0.5,"y":0.3}},"description":"me
when a cat","blurhash":"U34C6X?vxbaeV@ofofj[4mD$R%j]jZaeWBfj"}'
headers:
Cache-Control:
@ -35055,10 +35055,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=10.01, cache_generate.active_support;dur=0.96,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.29,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=11.56,
render.active_model_serializers;dur=0.51, process_action.action_controller;dur=328.71
- cache_read.active_support;dur=0.02, sql.active_record;dur=8.20, cache_generate.active_support;dur=0.98,
cache_write.active_support;dur=0.09, instantiation.active_record;dur=0.36,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=9.97,
render.active_model_serializers;dur=0.45, process_action.action_controller;dur=388.67
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -35070,11 +35070,11 @@ interactions:
X-RateLimit-Remaining:
- '29'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.300958Z'
- '2025-08-15T18:00:00.471218Z'
X-Request-Id:
- 7f59815c-f7c5-422c-ad60-444d2ff199c6
- b2a3e182-942e-483a-9cd0-8dfbde67105a
X-Runtime:
- '0.347358'
- '0.413567'
X-XSS-Protection:
- '0'
vary:
@ -35084,13 +35084,13 @@ interactions:
message: Accepted
- request:
body: !!binary |
LS00OWI5YmY5NThiMmUyMDNhYmVhNzUyYmRkM2EyZTMwMA0KQ29udGVudC1EaXNwb3NpdGlvbjog
LS04ZjA1Mjg0MGFiYWI4ZDE0YTI0MGE2YmE1Nzg2NDU0MQ0KQ29udGVudC1EaXNwb3NpdGlvbjog
Zm9ybS1kYXRhOyBuYW1lPSJkZXNjcmlwdGlvbiINCg0KSm9obiBMZW5ub24gZG9pbmcgYSBjb29s
IHdhbGsNCi0tNDliOWJmOTU4YjJlMjAzYWJlYTc1MmJkZDNhMmUzMDANCkNvbnRlbnQtRGlzcG9z
aXRpb246IGZvcm0tZGF0YTsgbmFtZT0iZm9jdXMiDQoNCjAuNjksMC42OQ0KLS00OWI5YmY5NThi
MmUyMDNhYmVhNzUyYmRkM2EyZTMwMA0KQ29udGVudC1EaXNwb3NpdGlvbjogZm9ybS1kYXRhOyBu
YW1lPSJ0aHVtYm5haWwiOyBmaWxlbmFtZT0ibWFzdG9kb25weXVwbG9hZF8xNzM5NDgzNzc2LjYx
NDc0OTRfM2Q5NDE5YmIxODFhNDQ2YTg0MTM3ZjA5MWZmZWRiMmQuanBnIg0KQ29udGVudC1UeXBl
IHdhbGsNCi0tOGYwNTI4NDBhYmFiOGQxNGEyNDBhNmJhNTc4NjQ1NDENCkNvbnRlbnQtRGlzcG9z
aXRpb246IGZvcm0tZGF0YTsgbmFtZT0iZm9jdXMiDQoNCjAuNjksMC42OQ0KLS04ZjA1Mjg0MGFi
YWI4ZDE0YTI0MGE2YmE1Nzg2NDU0MQ0KQ29udGVudC1EaXNwb3NpdGlvbjogZm9ybS1kYXRhOyBu
YW1lPSJ0aHVtYm5haWwiOyBmaWxlbmFtZT0ibWFzdG9kb25weXVwbG9hZF8xNzU1Mjc5MjE3Ljg0
NTg2NzZfODFhYWUyMTAyZTg2NDdjNDhmZjY2MThjOWJlNjJlYzAuanBnIg0KQ29udGVudC1UeXBl
OiBpbWFnZS9qcGVnDQoNCv/Y/+AAEEpGSUYAAQEAAAEAAQAA/+ICoElDQ19QUk9GSUxFAAEBAAAC
kGxjbXMEMAAAbW50clJHQiBYWVogAAAAAAAAAAAAAAAAYWNzcEFQUEwAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAPbWAAEAAAAA0y1sY21zAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
@ -35564,13 +35564,13 @@ interactions:
IggpAnyULgKncn5qbBogpHGUE9IqXBQ7bgDkUDbcAlo4jqOfajcmqmvKosrYD0hXd9NxTWMkWpY9
lo2o5MISPaP8ql5O6KmQSoLqy0oKjaiwKrdKbmmaucXhSlcLspx2OtJRWZo7EoKc9P2I0LTyQK9m
pqf6Kn+igpJKIurFE5n513mealDyJoZGDIcMOtPoswrVpaxTrITNHnf5lNWtu0dU0wfdQR+4Hcpt
hYIu71b3hgfioQML7vNoub6GJ/ftJoleOelMYhGE2oL8aVvGV7Pxf//ZDQotLTQ5YjliZjk1OGIy
ZTIwM2FiZWE3NTJiZGQzYTJlMzAwLS0NCg==
hYIu71b3hgfioQML7vNoub6GJ/ftJoleOelMYhGE2oL8aVvGV7Pxf//ZDQotLThmMDUyODQwYWJh
YjhkMTRhMjQwYTZiYTU3ODY0NTQxLS0NCg==
headers:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -35578,14 +35578,14 @@ interactions:
Content-Length:
- '27442'
Content-Type:
- multipart/form-data; boundary=49b9bf958b2e203abea752bdd3a2e300
- multipart/form-data; boundary=8f052840abab8d14a240a6ba57864541
User-Agent:
- tests/v311
method: PUT
uri: http://localhost:3000/api/v1/media/113998808783124423
uri: http://localhost:3000/api/v1/media/115033978819698491
response:
body:
string: '{"id":"113998808783124423","type":"video","url":null,"preview_url":"http://localhost:3000/system/media_attachments/thumbnails/113/998/808/783/124/423/original/a85cdb7282d8ae61.jpg","remote_url":null,"preview_remote_url":null,"text_url":null,"meta":{"focus":{"x":0.69,"y":0.69},"colors":{"background":"#dcf4fd","foreground":"#232220","accent":"#47372d"},"original":{"width":640,"height":640,"frame_rate":"30/1","duration":7.3,"bitrate":2187124},"small":{"width":400,"height":400,"size":"400x400","aspect":1.0}},"description":"John
string: '{"id":"115033978819698491","type":"video","url":null,"preview_url":"http://localhost:3000/system/media_attachments/thumbnails/115/033/978/819/698/491/original/d14fd97c3459018f.jpg","remote_url":null,"preview_remote_url":null,"text_url":null,"meta":{"focus":{"x":0.69,"y":0.69},"colors":{"background":"#dcf4fd","foreground":"#232220","accent":"#47372d"},"original":{"width":640,"height":640,"frame_rate":"30/1","duration":7.3,"bitrate":2187124},"small":{"width":400,"height":400,"size":"400x400","aspect":1.0}},"description":"John
Lennon doing a cool walk","blurhash":"UPNKI$xbloIA9ZoI.8RjK-oy%NkD%hW?i^t6"}'
headers:
Cache-Control:
@ -35599,11 +35599,11 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=4.27, cache_generate.active_support;dur=0.96,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.45,
- cache_read.active_support;dur=0.02, sql.active_record;dur=4.89, cache_generate.active_support;dur=0.87,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.37,
start_processing.action_controller;dur=0.00, unpermitted_parameters.action_controller;dur=0.00,
transaction.active_record;dur=4.81, render.active_model_serializers;dur=0.40,
process_action.action_controller;dur=273.18
transaction.active_record;dur=5.94, render.active_model_serializers;dur=0.60,
process_action.action_controller;dur=345.20
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -35615,11 +35615,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.648223Z'
- '2025-08-15T17:35:00.887172Z'
X-Request-Id:
- 2393fac8-5f2d-47ac-9538-0430c6976edd
- a625fb44-02ac-4437-95cd-fd00480d176a
X-Runtime:
- '0.288193'
- '0.364739'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -20,10 +20,10 @@ interactions:
uri: http://localhost:3000/api/v1/statuses
response:
body:
string: '{"id":"113998819962719849","created_at":"2025-02-13T21:59:07.186Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/113998819962719849","url":"http://localhost:3000/@mastodonpy_test/113998819962719849","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eToot!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":1,"statuses_count":5,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
string: '{"id":"115033992710406481","created_at":"2025-08-15T17:37:09.786Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/115033992710406481","url":"http://localhost:3000/@mastodonpy_test/115033992710406481","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eToot!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":1,"statuses_count":5,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
@ -34,14 +34,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"a989b5b1681a9fdf8d53ca7fceaf0e48"
- W/"d795b018aa052de8e6c9b3e8ac1862da"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.05, sql.active_record;dur=9.88, cache_generate.active_support;dur=3.21,
cache_write.active_support;dur=0.15, instantiation.active_record;dur=0.49,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=4.92,
render.active_model_serializers;dur=10.29, process_action.action_controller;dur=45.03
- cache_read.active_support;dur=0.05, sql.active_record;dur=13.66, cache_generate.active_support;dur=2.61,
cache_write.active_support;dur=0.11, instantiation.active_record;dur=0.38,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=5.44,
render.active_model_serializers;dur=14.99, process_action.action_controller;dur=55.65
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -51,13 +51,13 @@ interactions:
X-RateLimit-Limit:
- '300'
X-RateLimit-Remaining:
- '237'
- '224'
X-RateLimit-Reset:
- '2025-02-14T00:00:00.208136Z'
- '2025-08-15T18:00:00.817225Z'
X-Request-Id:
- 784f1cf9-c106-404c-ab94-cac78c887237
- 1f63bfac-31b9-4b5c-8456-22420c4b62a1
X-Runtime:
- '0.061541'
- '0.074763'
X-XSS-Protection:
- '0'
vary:
@ -71,7 +71,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -79,13 +79,13 @@ interactions:
User-Agent:
- tests/v311
method: GET
uri: http://localhost:3000/api/v1/timelines/home?max_id=113998819962720849&min_id=113998819962718849
uri: http://localhost:3000/api/v1/timelines/home?max_id=115033992710407481&min_id=115033992710405481
response:
body:
string: '[{"id":"113998819962719849","created_at":"2025-02-13T21:59:07.186Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/113998819962719849","url":"http://localhost:3000/@mastodonpy_test/113998819962719849","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eToot!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":1,"statuses_count":5,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}]'
string: '[{"id":"115033992710406481","created_at":"2025-08-15T17:37:09.786Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/115033992710406481","url":"http://localhost:3000/@mastodonpy_test/115033992710406481","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eToot!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":1,"statuses_count":5,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}]'
headers:
Cache-Control:
- private, no-store
@ -96,17 +96,17 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"c6080813e79460761530b6d438e60927"
- W/"f49b9384faeb123124c4b4384cfea33f"
Link:
- <http://localhost:3000/api/v1/timelines/home?max_id=113998819962719849>; rel="next",
<http://localhost:3000/api/v1/timelines/home?min_id=113998819962719849>; rel="prev"
- <http://localhost:3000/api/v1/timelines/home?max_id=115033992710406481>; rel="next",
<http://localhost:3000/api/v1/timelines/home?min_id=115033992710406481>; rel="prev"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.06, sql.active_record;dur=2.50, cache_generate.active_support;dur=2.99,
cache_write.active_support;dur=0.17, instantiation.active_record;dur=0.65,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.24,
process_action.action_controller;dur=39.79
- cache_read.active_support;dur=0.05, sql.active_record;dur=2.24, cache_generate.active_support;dur=2.60,
cache_write.active_support;dur=0.13, instantiation.active_record;dur=0.47,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=3.41,
process_action.action_controller;dur=35.20
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -118,11 +118,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.274733Z'
- '2025-08-15T17:40:00.894440Z'
X-Request-Id:
- c756c495-48c9-4ace-affd-ba9eb8c71b01
- ef81d4e1-aeb0-43d3-a19e-5a854967c55b
X-Runtime:
- '0.055043'
- '0.054084'
X-XSS-Protection:
- '0'
vary:
@ -136,7 +136,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -144,7 +144,7 @@ interactions:
User-Agent:
- tests/v311
method: GET
uri: http://localhost:3000/api/v1/timelines/home?max_id=113998819962718849&min_id=113998819962717849
uri: http://localhost:3000/api/v1/timelines/home?max_id=115033992710405481&min_id=115033992710404481
response:
body:
string: '[]'
@ -162,69 +162,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.05, sql.active_record;dur=0.86, cache_generate.active_support;dur=3.22,
cache_write.active_support;dur=0.15, instantiation.active_record;dur=0.28,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.05,
process_action.action_controller;dur=22.50
X-Content-Type-Options:
- nosniff
X-Frame-Options:
- SAMEORIGIN
X-Permitted-Cross-Domain-Policies:
- none
X-RateLimit-Limit:
- '300'
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.361915Z'
X-Request-Id:
- 7144fc88-f785-4824-a886-b925e29b993b
X-Runtime:
- '0.038561'
X-XSS-Protection:
- '0'
vary:
- Authorization, Origin
status:
code: 200
message: OK
- request:
body: null
headers:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
- keep-alive
User-Agent:
- tests/v311
method: GET
uri: http://localhost:3000/api/v1/timelines/home?max_id=113998819962721849&min_id=113998819962720849
response:
body:
string: '[]'
headers:
Cache-Control:
- private, no-store
Content-Length:
- '2'
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'; form-action 'none'
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"4f53cda18c2baa0c0354bb5f9a3ecbe5"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=0.79, cache_generate.active_support;dur=2.62,
cache_write.active_support;dur=0.14, instantiation.active_record;dur=0.25,
- cache_read.active_support;dur=0.04, sql.active_record;dur=0.64, cache_generate.active_support;dur=2.27,
cache_write.active_support;dur=0.12, instantiation.active_record;dur=0.19,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.04,
process_action.action_controller;dur=21.73
process_action.action_controller;dur=23.17
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -236,11 +177,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.404843Z'
- '2025-08-15T17:40:00.984538Z'
X-Request-Id:
- d51e5c9b-1a6d-4b06-917c-1ef0b518e1a5
- 7b69f3a2-846c-4d64-9524-0b98661bdcb2
X-Runtime:
- '0.037248'
- '0.043362'
X-XSS-Protection:
- '0'
vary:
@ -254,7 +195,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -262,13 +203,72 @@ interactions:
User-Agent:
- tests/v311
method: GET
uri: http://localhost:3000/api/v1/timelines/home?since_id=113998819962718849
uri: http://localhost:3000/api/v1/timelines/home?max_id=115033992710408481&min_id=115033992710407481
response:
body:
string: '[{"id":"113998819962719849","created_at":"2025-02-13T21:59:07.186Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/113998819962719849","url":"http://localhost:3000/@mastodonpy_test/113998819962719849","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eToot!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":1,"statuses_count":5,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}]'
string: '[]'
headers:
Cache-Control:
- private, no-store
Content-Length:
- '2'
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'; form-action 'none'
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"4f53cda18c2baa0c0354bb5f9a3ecbe5"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.03, sql.active_record;dur=0.65, cache_generate.active_support;dur=2.14,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.18,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.06,
process_action.action_controller;dur=23.39
X-Content-Type-Options:
- nosniff
X-Frame-Options:
- SAMEORIGIN
X-Permitted-Cross-Domain-Policies:
- none
X-RateLimit-Limit:
- '300'
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-08-15T17:40:00.036445Z'
X-Request-Id:
- 1c4a107e-7a2f-4b2e-acd0-9f94bc656b03
X-Runtime:
- '0.042685'
X-XSS-Protection:
- '0'
vary:
- Authorization, Origin
status:
code: 200
message: OK
- request:
body: null
headers:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
- keep-alive
User-Agent:
- tests/v311
method: GET
uri: http://localhost:3000/api/v1/timelines/home?since_id=115033992710405481
response:
body:
string: '[{"id":"115033992710406481","created_at":"2025-08-15T17:37:09.786Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/115033992710406481","url":"http://localhost:3000/@mastodonpy_test/115033992710406481","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eToot!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":1,"statuses_count":5,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}]'
headers:
Cache-Control:
- private, no-store
@ -279,17 +279,17 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"c6080813e79460761530b6d438e60927"
- W/"f49b9384faeb123124c4b4384cfea33f"
Link:
- <http://localhost:3000/api/v1/timelines/home?max_id=113998819962719849>; rel="next",
<http://localhost:3000/api/v1/timelines/home?min_id=113998819962719849>; rel="prev"
- <http://localhost:3000/api/v1/timelines/home?max_id=115033992710406481>; rel="next",
<http://localhost:3000/api/v1/timelines/home?min_id=115033992710406481>; rel="prev"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.06, sql.active_record;dur=2.64, cache_generate.active_support;dur=2.85,
cache_write.active_support;dur=0.19, instantiation.active_record;dur=0.77,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.26,
process_action.action_controller;dur=38.61
- cache_read.active_support;dur=0.05, sql.active_record;dur=2.30, cache_generate.active_support;dur=2.66,
cache_write.active_support;dur=0.13, instantiation.active_record;dur=0.48,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=3.45,
process_action.action_controller;dur=35.81
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -301,11 +301,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.446533Z'
- '2025-08-15T17:40:00.087400Z'
X-Request-Id:
- 975090b9-abeb-4f1a-8351-4a66a5011287
- 9aad63f9-c093-47c6-9279-75f06cb0ad30
X-Runtime:
- '0.054351'
- '0.055130'
X-XSS-Protection:
- '0'
vary:
@ -319,7 +319,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -329,13 +329,13 @@ interactions:
User-Agent:
- tests/v311
method: DELETE
uri: http://localhost:3000/api/v1/statuses/113998819962719849
uri: http://localhost:3000/api/v1/statuses/115033992710406481
response:
body:
string: '{"id":"113998819962719849","created_at":"2025-02-13T21:59:07.186Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/113998819962719849","url":"http://localhost:3000/@mastodonpy_test/113998819962719849","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"text":"Toot!","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":1,"statuses_count":4,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
string: '{"id":"115033992710406481","created_at":"2025-08-15T17:37:09.786Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/115033992710406481","url":"http://localhost:3000/@mastodonpy_test/115033992710406481","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"text":"Toot!","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":1,"statuses_count":4,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
@ -346,14 +346,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"2af857d43eec739cc88fae5970b93339"
- W/"4b823549f1b1367e59268d40af7add9d"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.06, sql.active_record;dur=6.03, cache_generate.active_support;dur=2.87,
cache_write.active_support;dur=0.15, instantiation.active_record;dur=0.63,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=3.52,
render.active_model_serializers;dur=17.93, process_action.action_controller;dur=45.57
- cache_read.active_support;dur=0.05, sql.active_record;dur=6.95, cache_generate.active_support;dur=2.65,
cache_write.active_support;dur=0.12, instantiation.active_record;dur=0.60,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=4.44,
render.active_model_serializers;dur=12.42, process_action.action_controller;dur=43.54
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -365,11 +365,11 @@ interactions:
X-RateLimit-Remaining:
- '29'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.531246Z'
- '2025-08-15T18:00:00.184618Z'
X-Request-Id:
- 445766c8-e7f7-496f-b485-1c484e972556
- 9d313185-ac84-4bb4-af23-2867a16b4f65
X-Runtime:
- '0.060127'
- '0.063417'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -20,10 +20,10 @@ interactions:
uri: http://localhost:3000/api/v1/statuses
response:
body:
string: '{"id":"113998820188776324","created_at":"2025-02-13T21:59:10.634Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/113998820188776324","url":"http://localhost:3000/@mastodonpy_test/113998820188776324","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eToot!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":1,"statuses_count":5,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
string: '{"id":"115033992942385966","created_at":"2025-08-15T17:37:13.325Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/115033992942385966","url":"http://localhost:3000/@mastodonpy_test/115033992942385966","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eToot!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":1,"statuses_count":5,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
@ -34,14 +34,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"5e9eb604b7d6bfe82f407132f5435628"
- W/"d4233974a5556682a901089547a1e55c"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.05, sql.active_record;dur=10.50, cache_generate.active_support;dur=5.82,
cache_write.active_support;dur=0.13, instantiation.active_record;dur=0.56,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=4.30,
render.active_model_serializers;dur=15.91, process_action.action_controller;dur=66.88
- cache_read.active_support;dur=0.05, sql.active_record;dur=13.28, cache_generate.active_support;dur=2.71,
cache_write.active_support;dur=0.13, instantiation.active_record;dur=0.46,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=5.31,
render.active_model_serializers;dur=10.01, process_action.action_controller;dur=50.34
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -51,13 +51,13 @@ interactions:
X-RateLimit-Limit:
- '300'
X-RateLimit-Remaining:
- '236'
- '223'
X-RateLimit-Reset:
- '2025-02-14T00:00:00.678622Z'
- '2025-08-15T18:00:00.350642Z'
X-Request-Id:
- 1759e786-1a9d-4ff5-8c89-4ae730560ca8
- d34aa339-5338-452c-b0bf-2d49dc996239
X-Runtime:
- '0.081794'
- '0.069268'
X-XSS-Protection:
- '0'
vary:
@ -71,7 +71,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -79,13 +79,13 @@ interactions:
User-Agent:
- tests/v311
method: GET
uri: http://localhost:3000/api/v1/timelines/home?max_id=113998821457920000&min_id=113998818836480000
uri: http://localhost:3000/api/v1/timelines/home?max_id=115033994231808000&min_id=115033991610368000
response:
body:
string: '[{"id":"113998820188776324","created_at":"2025-02-13T21:59:10.634Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/113998820188776324","url":"http://localhost:3000/@mastodonpy_test/113998820188776324","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eToot!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":1,"statuses_count":5,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}]'
string: '[{"id":"115033992942385966","created_at":"2025-08-15T17:37:13.325Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/115033992942385966","url":"http://localhost:3000/@mastodonpy_test/115033992942385966","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003eToot!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":1,"statuses_count":5,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}]'
headers:
Cache-Control:
- private, no-store
@ -96,17 +96,17 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"703852964eeadfc75ed962a596c20b78"
- W/"ffe1b041314d50351e856041e04c6c85"
Link:
- <http://localhost:3000/api/v1/timelines/home?max_id=113998820188776324>; rel="next",
<http://localhost:3000/api/v1/timelines/home?min_id=113998820188776324>; rel="prev"
- <http://localhost:3000/api/v1/timelines/home?max_id=115033992942385966>; rel="next",
<http://localhost:3000/api/v1/timelines/home?min_id=115033992942385966>; rel="prev"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.09, sql.active_record;dur=3.21, cache_generate.active_support;dur=10.42,
cache_write.active_support;dur=0.20, instantiation.active_record;dur=0.98,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=12.50,
process_action.action_controller;dur=48.58
- cache_read.active_support;dur=0.05, sql.active_record;dur=2.36, cache_generate.active_support;dur=2.79,
cache_write.active_support;dur=0.13, instantiation.active_record;dur=0.47,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=4.14,
process_action.action_controller;dur=36.92
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -118,11 +118,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.747793Z'
- '2025-08-15T17:40:00.434442Z'
X-Request-Id:
- b1e036e3-5a37-4b55-8eb5-9c646230bcec
- 15f314c1-9ede-4705-b3ef-3eb400420462
X-Runtime:
- '0.065538'
- '0.061288'
X-XSS-Protection:
- '0'
vary:
@ -136,7 +136,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -144,7 +144,7 @@ interactions:
User-Agent:
- tests/v311
method: GET
uri: http://localhost:3000/api/v1/timelines/home?max_id=113998822768640000&min_id=113998821457920000
uri: http://localhost:3000/api/v1/timelines/home?max_id=115033995542528000&min_id=115033994231808000
response:
body:
string: '[]'
@ -162,10 +162,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.05, sql.active_record;dur=0.95, cache_generate.active_support;dur=2.86,
cache_write.active_support;dur=0.15, instantiation.active_record;dur=0.33,
- cache_read.active_support;dur=0.04, sql.active_record;dur=0.71, cache_generate.active_support;dur=2.39,
cache_write.active_support;dur=0.11, instantiation.active_record;dur=0.24,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.04,
process_action.action_controller;dur=23.21
process_action.action_controller;dur=23.71
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -177,11 +177,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.845169Z'
- '2025-08-15T17:40:00.526089Z'
X-Request-Id:
- 85498167-8c86-4781-98c7-aa96504222a1
- e2d76a84-b084-4574-9575-4d33d01928bf
X-Runtime:
- '0.040297'
- '0.042818'
X-XSS-Protection:
- '0'
vary:
@ -195,7 +195,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -205,13 +205,13 @@ interactions:
User-Agent:
- tests/v311
method: DELETE
uri: http://localhost:3000/api/v1/statuses/113998820188776324
uri: http://localhost:3000/api/v1/statuses/115033992942385966
response:
body:
string: '{"id":"113998820188776324","created_at":"2025-02-13T21:59:10.634Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/113998820188776324","url":"http://localhost:3000/@mastodonpy_test/113998820188776324","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"text":"Toot!","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801242326861","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/113/998/801/242/326/861/original/369fe73b2cc12cbe.jpg","header":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","header_static":"http://localhost:3000/system/accounts/headers/113/998/801/242/326/861/original/c49892714f54f7f9.jpg","followers_count":0,"following_count":1,"statuses_count":4,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
string: '{"id":"115033992942385966","created_at":"2025-08-15T17:37:13.325Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"private","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test/statuses/115033992942385966","url":"http://localhost:3000/@mastodonpy_test/115033992942385966","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"text":"Toot!","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"115033965771926537","username":"mastodonpy_test","acct":"mastodonpy_test","display_name":"John
Lennon","locked":true,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"\u003cp\u003eI
walk funny\u003c/p\u003e","url":"http://localhost:3000/@mastodonpy_test","uri":"http://localhost:3000/users/mastodonpy_test","avatar":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","avatar_static":"http://localhost:3000/system/accounts/avatars/115/033/965/771/926/537/original/18c45c7a401c8a35.jpg","header":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","header_static":"http://localhost:3000/system/accounts/headers/115/033/965/771/926/537/original/52028bd44df7a0ef.jpg","followers_count":0,"following_count":1,"statuses_count":4,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[{"name":"bread","value":"toasty.","verified_at":null},{"name":"lasagna","value":"no!!!","verified_at":null}]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
@ -222,14 +222,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"df64b89f8cdbf31efcd8f4532c613947"
- W/"fbdbc78a8939249ce2ca04103d683af5"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.07, sql.active_record;dur=6.31, cache_generate.active_support;dur=3.05,
cache_write.active_support;dur=0.17, instantiation.active_record;dur=0.99,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=3.14,
render.active_model_serializers;dur=16.69, process_action.action_controller;dur=46.71
- cache_read.active_support;dur=0.05, sql.active_record;dur=6.88, cache_generate.active_support;dur=2.73,
cache_write.active_support;dur=0.14, instantiation.active_record;dur=0.55,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=4.71,
render.active_model_serializers;dur=13.42, process_action.action_controller;dur=48.13
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -241,11 +241,11 @@ interactions:
X-RateLimit-Remaining:
- '29'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.889010Z'
- '2025-08-15T18:00:00.578273Z'
X-Request-Id:
- 08128e56-5136-4114-b137-f51e3f9bea50
- 09a5c331-1076-4463-a491-13f3270ea348
X-Runtime:
- '0.063296'
- '0.067197'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -31,10 +31,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.03, sql.active_record;dur=3.08, cache_generate.active_support;dur=1.08,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.43,
start_processing.action_controller;dur=0.01, render.active_model_serializers;dur=0.04,
process_action.action_controller;dur=26.64
- cache_read.active_support;dur=0.02, sql.active_record;dur=1.69, cache_generate.active_support;dur=0.83,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.26,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.04,
process_action.action_controller;dur=25.53
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -46,11 +46,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T21:55:00.313046Z'
- '2025-08-15T17:35:00.091088Z'
X-Request-Id:
- cb9f6677-5cf0-4b6f-ae35-c52108a9a84b
- d2aa8641-afab-45f7-93fe-c6f60e1b37bc
X-Runtime:
- '0.048285'
- '0.052719'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -25,7 +25,7 @@ interactions:
Content-Security-Policy:
- 'base-uri ''none''; default-src ''none''; frame-ancestors ''none''; font-src
''self'' http://localhost:3000; img-src ''self'' data: blob: http://localhost:3000;
style-src ''self'' http://localhost:3000 ''nonce-CWT8NrCMnQZ7XdNJ0prUdg=='';
style-src ''self'' http://localhost:3000 ''nonce-v23KyAxNY37K4+cfhsp4eQ=='';
media-src ''self'' data: http://localhost:3000; manifest-src ''self'' http://localhost:3000;
form-action ''self''; child-src ''self'' blob: http://localhost:3000; worker-src
''self'' blob: http://localhost:3000; connect-src ''self'' data: blob: http://localhost:3000
@ -35,15 +35,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- Thu, 13 Feb 2025 21:55:48 GMT
- Fri, 15 Aug 2025 17:33:02 GMT
ETag:
- W/"30113ea20db19da6a25dac6491c2351e"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.05, sql.active_record;dur=0.12, cache_generate.active_support;dur=1.01,
cache_write.active_support;dur=0.08, start_processing.action_controller;dur=0.01,
render.active_model_serializers;dur=0.30, process_action.action_controller;dur=18.10
- cache_read.active_support;dur=0.04, sql.active_record;dur=0.08, cache_generate.active_support;dur=1.02,
cache_write.active_support;dur=0.08, start_processing.action_controller;dur=0.00,
render.active_model_serializers;dur=0.23, process_action.action_controller;dur=21.02
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -51,9 +51,9 @@ interactions:
X-Permitted-Cross-Domain-Policies:
- none
X-Request-Id:
- 138552bc-2828-4e8a-9c9e-89f98c12bf58
- 0ed886ee-4de4-4d09-9196-885e7ddcbf23
X-Runtime:
- '0.036080'
- '0.043373'
X-XSS-Protection:
- '0'
vary:
@ -67,7 +67,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -87,7 +87,7 @@ interactions:
Content-Security-Policy:
- 'base-uri ''none''; default-src ''none''; frame-ancestors ''none''; font-src
''self'' http://localhost:3000; img-src ''self'' data: blob: http://localhost:3000;
style-src ''self'' http://localhost:3000 ''nonce-UIu6nMLXGjtKVGRN2BOU3w=='';
style-src ''self'' http://localhost:3000 ''nonce-j0JRpFqZfj6oXturgYpiQw=='';
media-src ''self'' data: http://localhost:3000; manifest-src ''self'' http://localhost:3000;
form-action ''self''; child-src ''self'' blob: http://localhost:3000; worker-src
''self'' blob: http://localhost:3000; connect-src ''self'' data: blob: http://localhost:3000
@ -97,16 +97,16 @@ interactions:
Content-Type:
- application/json; charset=utf-8
Date:
- Thu, 13 Feb 2025 21:55:48 GMT
- Fri, 15 Aug 2025 17:33:02 GMT
ETag:
- W/"a03a9087a6815f49fae1725f08359551"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.10, sql.active_record;dur=1.12, cache_generate.active_support;dur=5.88,
cache_write.active_support;dur=0.20, start_processing.action_controller;dur=0.00,
instantiation.active_record;dur=0.04, render.active_model_serializers;dur=6.04,
process_action.action_controller;dur=23.39
- cache_read.active_support;dur=0.09, sql.active_record;dur=1.03, cache_generate.active_support;dur=5.65,
cache_write.active_support;dur=0.19, start_processing.action_controller;dur=0.00,
instantiation.active_record;dur=0.04, render.active_model_serializers;dur=5.73,
process_action.action_controller;dur=26.45
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -114,9 +114,9 @@ interactions:
X-Permitted-Cross-Domain-Policies:
- none
X-Request-Id:
- 695e27cc-0f34-49ab-8eef-822a95ff4f1e
- 0459edaa-038d-4eb0-81bf-a3dff17363b6
X-Runtime:
- '0.037425'
- '0.047863'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -20,11 +20,11 @@ interactions:
uri: http://localhost:3000/api/v1/statuses
response:
body:
string: '{"id":"114007923875989611","created_at":"2025-02-15T12:34:21.888Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"en","uri":"http://localhost:3000/users/admin/statuses/114007923875989611","url":"http://localhost:3000/@admin/114007923875989611","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003e\u003cspan
string: '{"id":"115033979064128925","created_at":"2025-08-15T17:33:41.561Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"en","uri":"http://localhost:3000/users/admin/statuses/115033979064128925","url":"http://localhost:3000/@admin/115033979064128925","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003e\u003cspan
class=\"h-card\" translate=\"no\"\u003e\u003ca href=\"http://localhost:3000/@mastodonpy_test\"
class=\"u-url mention\"\u003e@\u003cspan\u003emastodonpy_test\u003c/span\u003e\u003c/a\u003e\u003c/span\u003e
hello!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":6,"last_status_at":"2025-02-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[{"id":"113998801242326861","username":"mastodonpy_test","url":"http://localhost:3000/@mastodonpy_test","acct":"mastodonpy_test"}],"tags":[],"emojis":[],"card":null,"poll":null}'
test suite","website":null},"account":{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[{"id":"115033965771926537","username":"mastodonpy_test","url":"http://localhost:3000/@mastodonpy_test","acct":"mastodonpy_test"}],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
@ -35,14 +35,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"0d2682a94ea5b77daa55e5700d2a1639"
- W/"687a9b7bcbbd9bea11a41d00189ea99b"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.46, sql.active_record;dur=53.51, cache_generate.active_support;dur=36.16,
cache_write.active_support;dur=1.15, instantiation.active_record;dur=8.74,
start_processing.action_controller;dur=0.01, transaction.active_record;dur=55.39,
render.active_model_serializers;dur=42.33, process_action.action_controller;dur=227.16
- cache_read.active_support;dur=0.04, sql.active_record;dur=15.03, cache_generate.active_support;dur=2.61,
cache_write.active_support;dur=0.11, instantiation.active_record;dur=0.61,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=13.66,
render.active_model_serializers;dur=11.89, process_action.action_controller;dur=61.41
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -52,13 +52,13 @@ interactions:
X-RateLimit-Limit:
- '300'
X-RateLimit-Remaining:
- '299'
- '297'
X-RateLimit-Reset:
- '2025-02-15T15:00:00.980794Z'
- '2025-08-15T18:00:00.590934Z'
X-Request-Id:
- 99385df2-56f3-4c0d-93a6-3b8c4230d485
- ccbc9a55-adf8-4b51-8f96-c9ef8b66b478
X-Runtime:
- '0.321928'
- '0.080412'
X-XSS-Protection:
- '0'
vary:
@ -72,7 +72,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -83,47 +83,32 @@ interactions:
uri: http://localhost:3000/api/v1/notifications
response:
body:
string: '[{"id":"36","type":"mention","created_at":"2025-02-15T12:34:22.380Z","group_key":"ungrouped-36","account":{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":6,"last_status_at":"2025-02-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"status":{"id":"114007923875989611","created_at":"2025-02-15T12:34:21.888Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"en","uri":"http://localhost:3000/users/admin/statuses/114007923875989611","url":"http://localhost:3000/@admin/114007923875989611","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003e\u003cspan
string: '[{"id":"22","type":"mention","created_at":"2025-08-15T17:33:41.918Z","group_key":"ungrouped-22","account":{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"status":{"id":"115033979064128925","created_at":"2025-08-15T17:33:41.561Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"en","uri":"http://localhost:3000/users/admin/statuses/115033979064128925","url":"http://localhost:3000/@admin/115033979064128925","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003e\u003cspan
class=\"h-card\" translate=\"no\"\u003e\u003ca href=\"http://localhost:3000/@mastodonpy_test\"
class=\"u-url mention\"\u003e@\u003cspan\u003emastodonpy_test\u003c/span\u003e\u003c/a\u003e\u003c/span\u003e
hello!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":6,"last_status_at":"2025-02-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[{"id":"113998801242326861","username":"mastodonpy_test","url":"http://localhost:3000/@mastodonpy_test","acct":"mastodonpy_test"}],"tags":[],"emojis":[],"card":null,"poll":null}},{"id":"35","type":"poll","created_at":"2025-02-13T22:01:54.189Z","group_key":"ungrouped-35","account":{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":6,"last_status_at":"2025-02-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"status":{"id":"113998810972107187","created_at":"2025-02-13T21:56:49.999Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"en","uri":"http://localhost:3000/users/admin/statuses/113998810972107187","url":"http://localhost:3000/@admin/113998810972107187","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003enice\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":6,"last_status_at":"2025-02-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[],"tags":[],"emojis":[],"card":null,"poll":{"id":"2","expires_at":"2025-02-13T22:01:49.997Z","expired":true,"multiple":false,"votes_count":1,"voters_count":1,"voted":true,"own_votes":[1],"options":[{"title":"four
twenty","votes_count":0},{"title":"sixty-nine","votes_count":1}],"emojis":[]}}},{"id":"32","type":"mention","created_at":"2025-02-13T21:58:34.110Z","group_key":"ungrouped-32","account":{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":6,"last_status_at":"2025-02-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"status":{"id":"113998817726451380","created_at":"2025-02-13T21:58:33.064Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"direct","language":"en","uri":"http://localhost:3000/users/admin/statuses/113998817726451380","url":"http://localhost:3000/@admin/113998817726451380","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003e\u003cspan
class=\"h-card\" translate=\"no\"\u003e\u003ca href=\"http://localhost:3000/@mastodonpy_test\"
class=\"u-url mention\"\u003e@\u003cspan\u003emastodonpy_test\u003c/span\u003e\u003c/a\u003e\u003c/span\u003e
todo funny text here\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":6,"last_status_at":"2025-02-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[{"id":"113998801242326861","username":"mastodonpy_test","url":"http://localhost:3000/@mastodonpy_test","acct":"mastodonpy_test"}],"tags":[],"emojis":[],"card":null,"poll":null}},{"id":"30","type":"mention","created_at":"2025-02-13T21:57:41.476Z","group_key":"ungrouped-30","account":{"id":"113998801391516277","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":2,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"status":{"id":"113998814324184078","created_at":"2025-02-13T21:57:41.150Z","in_reply_to_id":"113998814250739998","in_reply_to_account_id":"113998801242326861","sensitive":false,"spoiler_text":"","visibility":"direct","language":"ja","uri":"http://localhost:3000/users/mastodonpy_test_2/statuses/113998814324184078","url":"http://localhost:3000/@mastodonpy_test_2/113998814324184078","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003e\u003cspan
class=\"h-card\" translate=\"no\"\u003e\u003ca href=\"http://localhost:3000/@mastodonpy_test\"
class=\"u-url mention\"\u003e@\u003cspan\u003emastodonpy_test\u003c/span\u003e\u003c/a\u003e\u003c/span\u003e
pssssst!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998801391516277","username":"mastodonpy_test_2","acct":"mastodonpy_test_2","display_name":"","locked":false,"bot":false,"discoverable":true,"indexable":true,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@mastodonpy_test_2","uri":"http://localhost:3000/users/mastodonpy_test_2","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":2,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[],"fields":[]},"media_attachments":[],"mentions":[{"id":"113998801242326861","username":"mastodonpy_test","url":"http://localhost:3000/@mastodonpy_test","acct":"mastodonpy_test"}],"tags":[],"emojis":[],"card":null,"poll":null}},{"id":"28","type":"mention","created_at":"2025-02-13T21:57:38.145Z","group_key":"ungrouped-28","account":{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":6,"last_status_at":"2025-02-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"status":{"id":"113998814106163410","created_at":"2025-02-13T21:57:37.823Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"en","uri":"http://localhost:3000/users/admin/statuses/113998814106163410","url":"http://localhost:3000/@admin/113998814106163410","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003e\u003cspan
class=\"h-card\" translate=\"no\"\u003e\u003ca href=\"http://localhost:3000/@mastodonpy_test\"
class=\"u-url mention\"\u003e@\u003cspan\u003emastodonpy_test\u003c/span\u003e\u003c/a\u003e\u003c/span\u003e
beep beep I\u0026#39;m a jeep\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":6,"last_status_at":"2025-02-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[{"id":"113998801242326861","username":"mastodonpy_test","url":"http://localhost:3000/@mastodonpy_test","acct":"mastodonpy_test"}],"tags":[],"emojis":[],"card":null,"poll":null}}]'
test suite","website":null},"account":{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[{"id":"115033965771926537","username":"mastodonpy_test","url":"http://localhost:3000/@mastodonpy_test","acct":"mastodonpy_test"}],"tags":[],"emojis":[],"card":null,"poll":null}}]'
headers:
Cache-Control:
- private, no-store
Content-Length:
- '13277'
- '2654'
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'; form-action 'none'
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"9e92d438557c09e766c203fa15107b62"
- W/"474c721a0ad52a7ac6f972d5ee875b23"
Link:
- <http://localhost:3000/api/v1/notifications?max_id=28>; rel="next", <http://localhost:3000/api/v1/notifications?min_id=36>;
- <http://localhost:3000/api/v1/notifications?max_id=22>; rel="next", <http://localhost:3000/api/v1/notifications?min_id=22>;
rel="prev"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.84, sql.active_record;dur=139.59, cache_generate.active_support;dur=34.82,
cache_write.active_support;dur=0.90, instantiation.active_record;dur=7.88,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=11.42,
cache_fetch_hit.active_support;dur=0.02, render.active_model_serializers;dur=27.42,
process_action.action_controller;dur=289.86
- cache_read.active_support;dur=0.08, sql.active_record;dur=2.97, cache_generate.active_support;dur=2.67,
cache_write.active_support;dur=0.13, instantiation.active_record;dur=0.97,
start_processing.action_controller;dur=0.01, cache_fetch_hit.active_support;dur=0.00,
render.active_model_serializers;dur=4.96, process_action.action_controller;dur=48.00
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -135,11 +120,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-15T12:35:00.150581Z'
- '2025-08-15T17:35:00.679728Z'
X-Request-Id:
- c6fbdd8c-c91d-49d2-9ee0-cfa96e1bc86c
- a3175087-a06c-45c0-b1ea-4445b55d74bf
X-Runtime:
- '0.367543'
- '0.079881'
X-XSS-Protection:
- '0'
vary:
@ -153,7 +138,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -161,14 +146,14 @@ interactions:
User-Agent:
- tests/v311
method: GET
uri: http://localhost:3000/api/v1/notifications/36
uri: http://localhost:3000/api/v1/notifications/22
response:
body:
string: '{"id":"36","type":"mention","created_at":"2025-02-15T12:34:22.380Z","group_key":"ungrouped-36","account":{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":6,"last_status_at":"2025-02-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"status":{"id":"114007923875989611","created_at":"2025-02-15T12:34:21.888Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"en","uri":"http://localhost:3000/users/admin/statuses/114007923875989611","url":"http://localhost:3000/@admin/114007923875989611","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003e\u003cspan
string: '{"id":"22","type":"mention","created_at":"2025-08-15T17:33:41.918Z","group_key":"ungrouped-22","account":{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"status":{"id":"115033979064128925","created_at":"2025-08-15T17:33:41.561Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"en","uri":"http://localhost:3000/users/admin/statuses/115033979064128925","url":"http://localhost:3000/@admin/115033979064128925","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003e\u003cspan
class=\"h-card\" translate=\"no\"\u003e\u003ca href=\"http://localhost:3000/@mastodonpy_test\"
class=\"u-url mention\"\u003e@\u003cspan\u003emastodonpy_test\u003c/span\u003e\u003c/a\u003e\u003c/span\u003e
hello!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":6,"last_status_at":"2025-02-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[{"id":"113998801242326861","username":"mastodonpy_test","url":"http://localhost:3000/@mastodonpy_test","acct":"mastodonpy_test"}],"tags":[],"emojis":[],"card":null,"poll":null}}'
test suite","website":null},"account":{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[{"id":"115033965771926537","username":"mastodonpy_test","url":"http://localhost:3000/@mastodonpy_test","acct":"mastodonpy_test"}],"tags":[],"emojis":[],"card":null,"poll":null}}'
headers:
Cache-Control:
- private, no-store
@ -179,14 +164,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"e35bcf37d0e1d8a56cde95fc0c4023e3"
- W/"58d2552f4e1d27b522a80a142517f9f2"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.09, sql.active_record;dur=3.70, cache_generate.active_support;dur=7.35,
cache_write.active_support;dur=0.14, instantiation.active_record;dur=1.12,
- cache_read.active_support;dur=0.08, sql.active_record;dur=2.67, cache_generate.active_support;dur=3.00,
cache_write.active_support;dur=0.11, instantiation.active_record;dur=3.71,
start_processing.action_controller;dur=0.00, cache_fetch_hit.active_support;dur=0.00,
render.active_model_serializers;dur=34.83, process_action.action_controller;dur=55.55
render.active_model_serializers;dur=24.11, process_action.action_controller;dur=45.66
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -198,11 +183,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-15T12:35:00.668513Z'
- '2025-08-15T17:35:00.798058Z'
X-Request-Id:
- 17e476c9-7c46-42a0-8037-7b44d90d46ec
- 3ab10063-1753-4f58-accf-49387dc34ac6
X-Runtime:
- '0.076951'
- '0.066260'
X-XSS-Protection:
- '0'
vary:
@ -216,7 +201,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -227,7 +212,7 @@ interactions:
uri: http://localhost:3000/api/v1/notifications/unread_count
response:
body:
string: '{"count":5}'
string: '{"count":1}'
headers:
Cache-Control:
- private, no-store
@ -238,14 +223,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"a7b59f14220279bf034e35863bb5c8f0"
- W/"6aea6dfe6561984cdc5c54ead84d47d2"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=6.49, cache_generate.active_support;dur=0.88,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.18,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.10,
process_action.action_controller;dur=55.96
- cache_read.active_support;dur=0.01, sql.active_record;dur=2.27, cache_generate.active_support;dur=0.64,
cache_write.active_support;dur=0.06, instantiation.active_record;dur=0.17,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.03,
process_action.action_controller;dur=37.02
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -257,11 +242,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-15T12:35:00.741907Z'
- '2025-08-15T17:35:00.871864Z'
X-Request-Id:
- dbd86f5e-c491-4aa3-a428-038ba9834209
- 37cd0eb1-0023-4293-9a7c-3a1d172f6684
X-Runtime:
- '0.071118'
- '0.056251'
X-XSS-Protection:
- '0'
vary:
@ -275,7 +260,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -285,12 +270,12 @@ interactions:
User-Agent:
- tests/v311
method: DELETE
uri: http://localhost:3000/api/v1/statuses/114007923875989611
uri: http://localhost:3000/api/v1/statuses/115033979064128925
response:
body:
string: '{"id":"114007923875989611","created_at":"2025-02-15T12:34:21.888Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"en","uri":"http://localhost:3000/users/admin/statuses/114007923875989611","url":"http://localhost:3000/@admin/114007923875989611","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"text":"@mastodonpy_test
string: '{"id":"115033979064128925","created_at":"2025-08-15T17:33:41.561Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"en","uri":"http://localhost:3000/users/admin/statuses/115033979064128925","url":"http://localhost:3000/@admin/115033979064128925","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"text":"@mastodonpy_test
hello!","filtered":[],"reblog":null,"application":{"name":"Mastodon.py test
suite","website":null},"account":{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":1,"following_count":0,"statuses_count":5,"last_status_at":"2025-02-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[{"id":"113998801242326861","username":"mastodonpy_test","url":"http://localhost:3000/@mastodonpy_test","acct":"mastodonpy_test"}],"tags":[],"emojis":[],"card":null,"poll":null}'
suite","website":null},"account":{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[{"id":"115033965771926537","username":"mastodonpy_test","url":"http://localhost:3000/@mastodonpy_test","acct":"mastodonpy_test"}],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
@ -301,14 +286,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"eeb757b5b519fba1e4ad662536b433f4"
- W/"eb6c588d21352257286ef63f529021f7"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.08, sql.active_record;dur=8.60, cache_generate.active_support;dur=4.16,
cache_write.active_support;dur=0.19, instantiation.active_record;dur=1.38,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=4.53,
render.active_model_serializers;dur=61.14, process_action.action_controller;dur=97.75
- cache_read.active_support;dur=0.04, sql.active_record;dur=6.96, cache_generate.active_support;dur=2.75,
cache_write.active_support;dur=0.13, instantiation.active_record;dur=0.70,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=4.38,
render.active_model_serializers;dur=12.84, process_action.action_controller;dur=48.19
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -320,11 +305,11 @@ interactions:
X-RateLimit-Remaining:
- '29'
X-RateLimit-Reset:
- '2025-02-15T13:00:00.828004Z'
- '2025-08-15T18:00:00.936319Z'
X-Request-Id:
- 3d8a3cdb-d852-439c-8cc7-5cd787f7c749
- 464f35c4-7836-4461-984e-0ea1147980d4
X-Runtime:
- '0.121283'
- '0.066865'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -33,10 +33,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.73, cache_generate.active_support;dur=1.07,
cache_write.active_support;dur=0.08, instantiation.active_record;dur=0.34,
- cache_read.active_support;dur=0.02, sql.active_record;dur=0.70, cache_generate.active_support;dur=0.97,
cache_write.active_support;dur=0.09, instantiation.active_record;dur=0.28,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.02,
process_action.action_controller;dur=20.37
process_action.action_controller;dur=22.37
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -48,11 +48,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.624863Z'
- '2025-08-15T17:35:00.263226Z'
X-Request-Id:
- 2298824d-6bb2-4862-9b2d-01fa5d165a73
- 1c3d6a4a-b944-4946-afb5-5d0005521fc6
X-Runtime:
- '0.035253'
- '0.042163'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -20,11 +20,11 @@ interactions:
uri: http://localhost:3000/api/v1/statuses
response:
body:
string: '{"id":"113998809943291448","created_at":"2025-02-13T21:56:34.301Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"en","uri":"http://localhost:3000/users/admin/statuses/113998809943291448","url":"http://localhost:3000/@admin/113998809943291448","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003e\u003cspan
string: '{"id":"115033980197695400","created_at":"2025-08-15T17:33:58.858Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"en","uri":"http://localhost:3000/users/admin/statuses/115033980197695400","url":"http://localhost:3000/@admin/115033980197695400","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003e\u003cspan
class=\"h-card\" translate=\"no\"\u003e\u003ca href=\"http://localhost:3000/@mastodonpy_test\"
class=\"u-url mention\"\u003e@\u003cspan\u003emastodonpy_test\u003c/span\u003e\u003c/a\u003e\u003c/span\u003e
hello!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[{"id":"113998801242326861","username":"mastodonpy_test","url":"http://localhost:3000/@mastodonpy_test","acct":"mastodonpy_test"}],"tags":[],"emojis":[],"card":null,"poll":null}'
test suite","website":null},"account":{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[{"id":"115033965771926537","username":"mastodonpy_test","url":"http://localhost:3000/@mastodonpy_test","acct":"mastodonpy_test"}],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
@ -35,14 +35,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"eb06681dad595df507ecfa9827dc58f5"
- W/"6626bbf36bcee7792e5ca2e9f4595d12"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.05, sql.active_record;dur=10.52, cache_generate.active_support;dur=2.74,
cache_write.active_support;dur=0.14, instantiation.active_record;dur=0.65,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=8.80,
render.active_model_serializers;dur=10.39, process_action.action_controller;dur=54.22
- cache_read.active_support;dur=0.05, sql.active_record;dur=14.74, cache_generate.active_support;dur=2.94,
cache_write.active_support;dur=0.13, instantiation.active_record;dur=0.61,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=10.00,
render.active_model_serializers;dur=14.33, process_action.action_controller;dur=60.18
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -54,11 +54,11 @@ interactions:
X-RateLimit-Remaining:
- '292'
X-RateLimit-Reset:
- '2025-02-14T00:00:00.324982Z'
- '2025-08-15T18:00:00.890004Z'
X-Request-Id:
- 4a5bb6ad-8409-4159-a8c2-18f07638ce71
- dcb5e6b5-50ff-412e-93e7-64d088eca97e
X-Runtime:
- '0.068681'
- '0.078848'
X-XSS-Protection:
- '0'
vary:
@ -72,7 +72,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -83,11 +83,11 @@ interactions:
uri: http://localhost:3000/api/v1/notifications
response:
body:
string: '[{"id":"25","type":"mention","created_at":"2025-02-13T21:56:34.623Z","group_key":"ungrouped-25","account":{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"status":{"id":"113998809943291448","created_at":"2025-02-13T21:56:34.301Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"en","uri":"http://localhost:3000/users/admin/statuses/113998809943291448","url":"http://localhost:3000/@admin/113998809943291448","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003e\u003cspan
string: '[{"id":"27","type":"mention","created_at":"2025-08-15T17:33:59.202Z","group_key":"ungrouped-27","account":{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"status":{"id":"115033980197695400","created_at":"2025-08-15T17:33:58.858Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"en","uri":"http://localhost:3000/users/admin/statuses/115033980197695400","url":"http://localhost:3000/@admin/115033980197695400","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003e\u003cspan
class=\"h-card\" translate=\"no\"\u003e\u003ca href=\"http://localhost:3000/@mastodonpy_test\"
class=\"u-url mention\"\u003e@\u003cspan\u003emastodonpy_test\u003c/span\u003e\u003c/a\u003e\u003c/span\u003e
hello!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[{"id":"113998801242326861","username":"mastodonpy_test","url":"http://localhost:3000/@mastodonpy_test","acct":"mastodonpy_test"}],"tags":[],"emojis":[],"card":null,"poll":null}}]'
test suite","website":null},"account":{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[{"id":"115033965771926537","username":"mastodonpy_test","url":"http://localhost:3000/@mastodonpy_test","acct":"mastodonpy_test"}],"tags":[],"emojis":[],"card":null,"poll":null}}]'
headers:
Cache-Control:
- private, no-store
@ -98,17 +98,17 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"f82bcc6bce59dcf8d7a273a5e2832b59"
- W/"9362e4e960d6be8d9c3458ceead428eb"
Link:
- <http://localhost:3000/api/v1/notifications?max_id=25>; rel="next", <http://localhost:3000/api/v1/notifications?min_id=25>;
- <http://localhost:3000/api/v1/notifications?max_id=27>; rel="next", <http://localhost:3000/api/v1/notifications?min_id=27>;
rel="prev"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.08, sql.active_record;dur=2.82, cache_generate.active_support;dur=2.80,
cache_write.active_support;dur=0.13, instantiation.active_record;dur=2.13,
- cache_read.active_support;dur=0.10, sql.active_record;dur=3.17, cache_generate.active_support;dur=2.80,
cache_write.active_support;dur=0.12, instantiation.active_record;dur=0.91,
start_processing.action_controller;dur=0.00, cache_fetch_hit.active_support;dur=0.00,
render.active_model_serializers;dur=4.60, process_action.action_controller;dur=38.44
render.active_model_serializers;dur=4.92, process_action.action_controller;dur=42.09
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -120,11 +120,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.389950Z'
- '2025-08-15T17:35:00.969656Z'
X-Request-Id:
- 775f41d0-98f1-4494-87ce-f4237aeb1676
- 078ade6a-3e09-412e-aab5-246a4a4f79a3
X-Runtime:
- '0.052967'
- '0.061032'
X-XSS-Protection:
- '0'
vary:
@ -138,7 +138,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -148,7 +148,7 @@ interactions:
User-Agent:
- tests/v311
method: POST
uri: http://localhost:3000/api/v1/notifications/25/dismiss
uri: http://localhost:3000/api/v1/notifications/27/dismiss
response:
body:
string: '{}'
@ -166,10 +166,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.03, sql.active_record;dur=4.09, cache_generate.active_support;dur=1.11,
cache_write.active_support;dur=0.09, instantiation.active_record;dur=0.52,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=3.79,
render.active_model_serializers;dur=0.02, process_action.action_controller;dur=25.54
- cache_read.active_support;dur=0.02, sql.active_record;dur=6.89, cache_generate.active_support;dur=0.90,
cache_write.active_support;dur=0.07, instantiation.active_record;dur=0.32,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=6.77,
render.active_model_serializers;dur=0.03, process_action.action_controller;dur=29.80
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -181,11 +181,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.490524Z'
- '2025-08-15T17:35:00.083685Z'
X-Request-Id:
- 3b249755-b57c-4da7-8f37-fa720a8a8b86
- 4eb69285-57fe-4287-94af-5367168b01aa
X-Runtime:
- '0.044013'
- '0.048744'
X-XSS-Protection:
- '0'
vary:
@ -199,7 +199,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -209,12 +209,12 @@ interactions:
User-Agent:
- tests/v311
method: DELETE
uri: http://localhost:3000/api/v1/statuses/113998809943291448
uri: http://localhost:3000/api/v1/statuses/115033980197695400
response:
body:
string: '{"id":"113998809943291448","created_at":"2025-02-13T21:56:34.301Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"en","uri":"http://localhost:3000/users/admin/statuses/113998809943291448","url":"http://localhost:3000/@admin/113998809943291448","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"text":"@mastodonpy_test
string: '{"id":"115033980197695400","created_at":"2025-08-15T17:33:58.858Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"en","uri":"http://localhost:3000/users/admin/statuses/115033980197695400","url":"http://localhost:3000/@admin/115033980197695400","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"text":"@mastodonpy_test
hello!","filtered":[],"reblog":null,"application":{"name":"Mastodon.py test
suite","website":null},"account":{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[{"id":"113998801242326861","username":"mastodonpy_test","url":"http://localhost:3000/@mastodonpy_test","acct":"mastodonpy_test"}],"tags":[],"emojis":[],"card":null,"poll":null}'
suite","website":null},"account":{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[{"id":"115033965771926537","username":"mastodonpy_test","url":"http://localhost:3000/@mastodonpy_test","acct":"mastodonpy_test"}],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
@ -225,14 +225,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"2fc4be523c26e9e658519a5a19adf846"
- W/"974772e1dad355a7794c7e422345d04a"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.05, sql.active_record;dur=5.53, cache_generate.active_support;dur=2.55,
cache_write.active_support;dur=0.13, instantiation.active_record;dur=0.65,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=2.92,
render.active_model_serializers;dur=12.45, process_action.action_controller;dur=39.49
- cache_read.active_support;dur=0.05, sql.active_record;dur=6.82, cache_generate.active_support;dur=2.70,
cache_write.active_support;dur=0.13, instantiation.active_record;dur=0.68,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=4.08,
render.active_model_serializers;dur=12.39, process_action.action_controller;dur=43.85
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -244,11 +244,11 @@ interactions:
X-RateLimit-Remaining:
- '29'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.533634Z'
- '2025-08-15T18:00:00.142751Z'
X-Request-Id:
- d2ecde38-83f5-4f11-a4e3-685aa6c3acd4
- 3d8f86c3-1271-4fdf-bb5c-3ab8a768adc8
X-Runtime:
- '0.053855'
- '0.062827'
X-XSS-Protection:
- '0'
vary:

Wyświetl plik

@ -5,7 +5,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -20,11 +20,11 @@ interactions:
uri: http://localhost:3000/api/v1/statuses
response:
body:
string: '{"id":"113998809714536420","created_at":"2025-02-13T21:56:30.811Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"en","uri":"http://localhost:3000/users/admin/statuses/113998809714536420","url":"http://localhost:3000/@admin/113998809714536420","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003e\u003cspan
string: '{"id":"115033979961527686","created_at":"2025-08-15T17:33:55.254Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"en","uri":"http://localhost:3000/users/admin/statuses/115033979961527686","url":"http://localhost:3000/@admin/115033979961527686","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"content":"\u003cp\u003e\u003cspan
class=\"h-card\" translate=\"no\"\u003e\u003ca href=\"http://localhost:3000/@mastodonpy_test\"
class=\"u-url mention\"\u003e@\u003cspan\u003emastodonpy_test\u003c/span\u003e\u003c/a\u003e\u003c/span\u003e
hello!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[{"id":"113998801242326861","username":"mastodonpy_test","url":"http://localhost:3000/@mastodonpy_test","acct":"mastodonpy_test"}],"tags":[],"emojis":[],"card":null,"poll":null}'
test suite","website":null},"account":{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[{"id":"115033965771926537","username":"mastodonpy_test","url":"http://localhost:3000/@mastodonpy_test","acct":"mastodonpy_test"}],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
@ -35,14 +35,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"411a21b5f185c6291e96a2d72a430be0"
- W/"483fe3aedf9edac712b3e2adca7180c5"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.06, sql.active_record;dur=12.74, cache_generate.active_support;dur=2.98,
cache_write.active_support;dur=0.14, instantiation.active_record;dur=1.02,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=14.87,
render.active_model_serializers;dur=13.92, process_action.action_controller;dur=64.63
- cache_read.active_support;dur=0.05, sql.active_record;dur=14.51, cache_generate.active_support;dur=3.07,
cache_write.active_support;dur=0.12, instantiation.active_record;dur=0.61,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=9.87,
render.active_model_serializers;dur=14.56, process_action.action_controller;dur=60.02
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -54,11 +54,11 @@ interactions:
X-RateLimit-Remaining:
- '293'
X-RateLimit-Reset:
- '2025-02-14T00:00:00.842881Z'
- '2025-08-15T18:00:00.285685Z'
X-Request-Id:
- d34baea3-6345-43e2-8edf-799b06a77b0b
- 40bbe367-6659-433a-8ddf-c812e940c6ac
X-Runtime:
- '0.081330'
- '0.078750'
X-XSS-Protection:
- '0'
vary:
@ -72,7 +72,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -98,10 +98,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=3.27, cache_generate.active_support;dur=2.30,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.28,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.03,
process_action.action_controller;dur=32.68
- cache_read.active_support;dur=0.04, sql.active_record;dur=0.74, cache_generate.active_support;dur=2.19,
cache_write.active_support;dur=0.09, instantiation.active_record;dur=0.23,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.04,
process_action.action_controller;dur=23.92
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -113,11 +113,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.919540Z'
- '2025-08-15T17:35:00.378069Z'
X-Request-Id:
- 155d3b25-bb0a-4e3c-93c3-afc4c519a629
- 1e9b8769-814a-4516-839b-8dc3c78bf972
X-Runtime:
- '0.047199'
- '0.042887'
X-XSS-Protection:
- '0'
vary:
@ -131,7 +131,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -157,10 +157,10 @@ interactions:
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.04, sql.active_record;dur=0.91, cache_generate.active_support;dur=3.11,
cache_write.active_support;dur=0.10, instantiation.active_record;dur=0.19,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.04,
process_action.action_controller;dur=21.38
- cache_read.active_support;dur=0.04, sql.active_record;dur=0.96, cache_generate.active_support;dur=2.37,
cache_write.active_support;dur=0.09, instantiation.active_record;dur=0.20,
start_processing.action_controller;dur=0.00, render.active_model_serializers;dur=0.03,
process_action.action_controller;dur=29.49
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -172,11 +172,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.958315Z'
- '2025-08-15T17:35:00.429969Z'
X-Request-Id:
- 952256d9-49fa-4a55-8d99-04d0db547b8a
- 53d67d0f-0e33-4fbe-ae8d-620581fe2a13
X-Runtime:
- '0.036004'
- '0.048951'
X-XSS-Protection:
- '0'
vary:
@ -190,7 +190,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -201,11 +201,11 @@ interactions:
uri: http://localhost:3000/api/v1/notifications?exclude_types%5B%5D=follow_request&types%5B%5D=mention
response:
body:
string: '[{"id":"24","type":"mention","created_at":"2025-02-13T21:56:31.120Z","group_key":"ungrouped-24","account":{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"status":{"id":"113998809714536420","created_at":"2025-02-13T21:56:30.811Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"en","uri":"http://localhost:3000/users/admin/statuses/113998809714536420","url":"http://localhost:3000/@admin/113998809714536420","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003e\u003cspan
string: '[{"id":"26","type":"mention","created_at":"2025-08-15T17:33:55.585Z","group_key":"ungrouped-26","account":{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"status":{"id":"115033979961527686","created_at":"2025-08-15T17:33:55.254Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"en","uri":"http://localhost:3000/users/admin/statuses/115033979961527686","url":"http://localhost:3000/@admin/115033979961527686","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003e\u003cspan
class=\"h-card\" translate=\"no\"\u003e\u003ca href=\"http://localhost:3000/@mastodonpy_test\"
class=\"u-url mention\"\u003e@\u003cspan\u003emastodonpy_test\u003c/span\u003e\u003c/a\u003e\u003c/span\u003e
hello!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[{"id":"113998801242326861","username":"mastodonpy_test","url":"http://localhost:3000/@mastodonpy_test","acct":"mastodonpy_test"}],"tags":[],"emojis":[],"card":null,"poll":null}}]'
test suite","website":null},"account":{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[{"id":"115033965771926537","username":"mastodonpy_test","url":"http://localhost:3000/@mastodonpy_test","acct":"mastodonpy_test"}],"tags":[],"emojis":[],"card":null,"poll":null}}]'
headers:
Cache-Control:
- private, no-store
@ -216,18 +216,18 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"97eb97fd993833ce64fc85e0fd7aeab7"
- W/"0fe9c044909274a45b69916731819239"
Link:
- <http://localhost:3000/api/v1/notifications?exclude_types%5B%5D=follow_request&max_id=24&types%5B%5D=mention>;
rel="next", <http://localhost:3000/api/v1/notifications?exclude_types%5B%5D=follow_request&min_id=24&types%5B%5D=mention>;
- <http://localhost:3000/api/v1/notifications?exclude_types%5B%5D=follow_request&max_id=26&types%5B%5D=mention>;
rel="next", <http://localhost:3000/api/v1/notifications?exclude_types%5B%5D=follow_request&min_id=26&types%5B%5D=mention>;
rel="prev"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.09, sql.active_record;dur=2.86, cache_generate.active_support;dur=5.10,
cache_write.active_support;dur=0.13, instantiation.active_record;dur=0.87,
- cache_read.active_support;dur=0.08, sql.active_record;dur=3.11, cache_generate.active_support;dur=2.64,
cache_write.active_support;dur=0.12, instantiation.active_record;dur=0.81,
start_processing.action_controller;dur=0.00, cache_fetch_hit.active_support;dur=0.00,
render.active_model_serializers;dur=7.36, process_action.action_controller;dur=40.68
render.active_model_serializers;dur=4.63, process_action.action_controller;dur=41.40
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -239,11 +239,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.997021Z'
- '2025-08-15T17:35:00.482665Z'
X-Request-Id:
- de8616c1-40cd-4b5c-8eca-3298c32e9a0d
- 05ec5db7-d189-40a3-8f14-bef62c908d6e
X-Runtime:
- '0.054951'
- '0.060522'
X-XSS-Protection:
- '0'
vary:
@ -257,7 +257,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN
Connection:
@ -268,11 +268,11 @@ interactions:
uri: http://localhost:3000/api/v1/notifications?exclude_types%5B%5D=follow_request&types%5B%5D=mention&types%5B%5D=follow_request
response:
body:
string: '[{"id":"24","type":"mention","created_at":"2025-02-13T21:56:31.120Z","group_key":"ungrouped-24","account":{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"status":{"id":"113998809714536420","created_at":"2025-02-13T21:56:30.811Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"en","uri":"http://localhost:3000/users/admin/statuses/113998809714536420","url":"http://localhost:3000/@admin/113998809714536420","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003e\u003cspan
string: '[{"id":"26","type":"mention","created_at":"2025-08-15T17:33:55.585Z","group_key":"ungrouped-26","account":{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"status":{"id":"115033979961527686","created_at":"2025-08-15T17:33:55.254Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"en","uri":"http://localhost:3000/users/admin/statuses/115033979961527686","url":"http://localhost:3000/@admin/115033979961527686","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"content":"\u003cp\u003e\u003cspan
class=\"h-card\" translate=\"no\"\u003e\u003ca href=\"http://localhost:3000/@mastodonpy_test\"
class=\"u-url mention\"\u003e@\u003cspan\u003emastodonpy_test\u003c/span\u003e\u003c/a\u003e\u003c/span\u003e
hello!\u003c/p\u003e","filtered":[],"reblog":null,"application":{"name":"Mastodon.py
test suite","website":null},"account":{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[{"id":"113998801242326861","username":"mastodonpy_test","url":"http://localhost:3000/@mastodonpy_test","acct":"mastodonpy_test"}],"tags":[],"emojis":[],"card":null,"poll":null}}]'
test suite","website":null},"account":{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":1,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[{"id":"115033965771926537","username":"mastodonpy_test","url":"http://localhost:3000/@mastodonpy_test","acct":"mastodonpy_test"}],"tags":[],"emojis":[],"card":null,"poll":null}}]'
headers:
Cache-Control:
- private, no-store
@ -283,18 +283,18 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"97eb97fd993833ce64fc85e0fd7aeab7"
- W/"0fe9c044909274a45b69916731819239"
Link:
- <http://localhost:3000/api/v1/notifications?exclude_types%5B%5D=follow_request&max_id=24&types%5B%5D=mention&types%5B%5D=follow_request>;
rel="next", <http://localhost:3000/api/v1/notifications?exclude_types%5B%5D=follow_request&min_id=24&types%5B%5D=mention&types%5B%5D=follow_request>;
- <http://localhost:3000/api/v1/notifications?exclude_types%5B%5D=follow_request&max_id=26&types%5B%5D=mention&types%5B%5D=follow_request>;
rel="next", <http://localhost:3000/api/v1/notifications?exclude_types%5B%5D=follow_request&min_id=26&types%5B%5D=mention&types%5B%5D=follow_request>;
rel="prev"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.08, sql.active_record;dur=2.91, cache_generate.active_support;dur=2.71,
cache_write.active_support;dur=0.13, instantiation.active_record;dur=0.92,
- cache_read.active_support;dur=0.08, sql.active_record;dur=2.91, cache_generate.active_support;dur=2.61,
cache_write.active_support;dur=0.11, instantiation.active_record;dur=0.76,
start_processing.action_controller;dur=0.00, cache_fetch_hit.active_support;dur=0.00,
render.active_model_serializers;dur=4.14, process_action.action_controller;dur=41.20
render.active_model_serializers;dur=4.22, process_action.action_controller;dur=40.18
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -306,11 +306,11 @@ interactions:
X-RateLimit-Remaining:
- '299'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.095628Z'
- '2025-08-15T17:35:00.601971Z'
X-Request-Id:
- ddbb4783-a1a4-491a-8a6a-8e237d7513ca
- 18788911-33db-4bbb-816f-50272f0487b0
X-Runtime:
- '0.056241'
- '0.060265'
X-XSS-Protection:
- '0'
vary:
@ -324,7 +324,7 @@ interactions:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
- gzip, deflate, br
Authorization:
- Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2
Connection:
@ -334,12 +334,12 @@ interactions:
User-Agent:
- tests/v311
method: DELETE
uri: http://localhost:3000/api/v1/statuses/113998809714536420
uri: http://localhost:3000/api/v1/statuses/115033979961527686
response:
body:
string: '{"id":"113998809714536420","created_at":"2025-02-13T21:56:30.811Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"en","uri":"http://localhost:3000/users/admin/statuses/113998809714536420","url":"http://localhost:3000/@admin/113998809714536420","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"text":"@mastodonpy_test
string: '{"id":"115033979961527686","created_at":"2025-08-15T17:33:55.254Z","in_reply_to_id":null,"in_reply_to_account_id":null,"sensitive":false,"spoiler_text":"","visibility":"public","language":"en","uri":"http://localhost:3000/users/admin/statuses/115033979961527686","url":"http://localhost:3000/@admin/115033979961527686","replies_count":0,"reblogs_count":0,"favourites_count":0,"edited_at":null,"favourited":false,"reblogged":false,"muted":false,"bookmarked":false,"pinned":false,"text":"@mastodonpy_test
hello!","filtered":[],"reblog":null,"application":{"name":"Mastodon.py test
suite","website":null},"account":{"id":"113998800956287197","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-02-13T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-02-13","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[{"id":"113998801242326861","username":"mastodonpy_test","url":"http://localhost:3000/@mastodonpy_test","acct":"mastodonpy_test"}],"tags":[],"emojis":[],"card":null,"poll":null}'
suite","website":null},"account":{"id":"115033965466813222","username":"admin","acct":"admin","display_name":"","locked":false,"bot":false,"discoverable":null,"indexable":false,"group":false,"created_at":"2025-08-15T00:00:00.000Z","note":"","url":"http://localhost:3000/@admin","uri":"http://localhost:3000/users/admin","avatar":"http://localhost:3000/avatars/original/missing.png","avatar_static":"http://localhost:3000/avatars/original/missing.png","header":"http://localhost:3000/headers/original/missing.png","header_static":"http://localhost:3000/headers/original/missing.png","followers_count":0,"following_count":0,"statuses_count":0,"last_status_at":"2025-08-15","hide_collections":null,"noindex":false,"emojis":[],"roles":[{"id":"3","name":"Owner","color":""}],"fields":[]},"media_attachments":[],"mentions":[{"id":"115033965771926537","username":"mastodonpy_test","url":"http://localhost:3000/@mastodonpy_test","acct":"mastodonpy_test"}],"tags":[],"emojis":[],"card":null,"poll":null}'
headers:
Cache-Control:
- private, no-store
@ -350,14 +350,14 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ETag:
- W/"a88317735cfcccddab19e666d6eac4f3"
- W/"99af5c2af4c831519c604cb5d27594b4"
Referrer-Policy:
- strict-origin-when-cross-origin
Server-Timing:
- cache_read.active_support;dur=0.05, sql.active_record;dur=8.14, cache_generate.active_support;dur=2.66,
cache_write.active_support;dur=0.14, instantiation.active_record;dur=0.73,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=5.47,
render.active_model_serializers;dur=12.82, process_action.action_controller;dur=41.95
- cache_read.active_support;dur=0.05, sql.active_record;dur=10.08, cache_generate.active_support;dur=3.85,
cache_write.active_support;dur=0.13, instantiation.active_record;dur=0.66,
start_processing.action_controller;dur=0.00, transaction.active_record;dur=7.59,
render.active_model_serializers;dur=13.86, process_action.action_controller;dur=47.09
X-Content-Type-Options:
- nosniff
X-Frame-Options:
@ -369,11 +369,11 @@ interactions:
X-RateLimit-Remaining:
- '29'
X-RateLimit-Reset:
- '2025-02-13T22:00:00.195446Z'
- '2025-08-15T18:00:00.717487Z'
X-Request-Id:
- 06a69da8-157e-4126-8f16-866699e8d324
- 99f06cb2-3384-4566-891c-8f48d02e3cab
X-Runtime:
- '0.057537'
- '0.066141'
X-XSS-Protection:
- '0'
vary:

Some files were not shown because too many files have changed in this diff Show More