Forgot to include the activity when producing the object. Heh!
This commit is contained in:
parent
5377fcf774
commit
9fc0c098ce
|
@ -26,6 +26,9 @@ Authorization: Bearer xx-bearer-token-here-xx
|
||||||
"items": [
|
"items": [
|
||||||
{
|
{
|
||||||
"@context": "http://www.w3.org/ns/activitystreams",
|
"@context": "http://www.w3.org/ns/activitystreams",
|
||||||
|
"actor": "http://samsplace.example/sam/",
|
||||||
|
"verb": "Post",
|
||||||
|
"object": {
|
||||||
"@id": "https://samsplace.example/samsthoughts/note/41",
|
"@id": "https://samsplace.example/samsthoughts/note/41",
|
||||||
"@type": "Note",
|
"@type": "Note",
|
||||||
"actor": "http://samsplace.example/sam/",
|
"actor": "http://samsplace.example/sam/",
|
||||||
|
@ -41,6 +44,7 @@ Authorization: Bearer xx-bearer-token-here-xx
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
@ -117,6 +121,9 @@ Authorization: Bearer xx-bearer-token-here-xx
|
||||||
"items": [
|
"items": [
|
||||||
{
|
{
|
||||||
"@context": "http://www.w3.org/ns/activitystreams",
|
"@context": "http://www.w3.org/ns/activitystreams",
|
||||||
|
"actor": "http://samsplace.example/sam/",
|
||||||
|
"verb": "Post",
|
||||||
|
"object": {
|
||||||
"@id": "https://samsplace.example/samsthoughts/note/41",
|
"@id": "https://samsplace.example/samsthoughts/note/41",
|
||||||
"@type": "Note",
|
"@type": "Note",
|
||||||
"actor": "http://samsplace.example/sam/",
|
"actor": "http://samsplace.example/sam/",
|
||||||
|
@ -131,14 +138,19 @@ Authorization: Bearer xx-bearer-token-here-xx
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"@context": "http://www.w3.org/ns/activitystreams",
|
"@context": "http://www.w3.org/ns/activitystreams",
|
||||||
"@id": "https://samsplace.example/samsthoughts/note/40",
|
"actor": "http://samsplace.example/sam/",
|
||||||
|
"verb": "Post",
|
||||||
|
"object": {
|
||||||
"@type": "Note",
|
"@type": "Note",
|
||||||
|
"@id": "https://samsplace.example/samsthoughts/note/40",
|
||||||
"actor": "http://samsplace.example/sam/",
|
"actor": "http://samsplace.example/sam/",
|
||||||
"content": "Why'd the chicken cross the road? To get away from the wolf!",
|
"content": "Why'd the chicken cross the road? To get away from the wolf!",
|
||||||
}
|
}
|
||||||
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in New Issue