Get Live Story
Used to view self or other people's stories (including friends) that are currently live, and to review stories that have been archived.
Get Live My Story
Request
GET /v1/stories/live/me/20/0 HTTP/1.1
Host: story.api.mimiland.io
Authorization: bearer v4.public.eyJhZC*****5xTtpdbQI
mm-user-id: 65646591714177dcf46462dd
mm-client-id: mml
const myHeaders = new Headers();
myHeaders.append("Authorization", "bearer v4.public.eyJhZC*****5xTtpdbQI");
myHeaders.append("mm-user-id", "65646591714177dcf46462dd");
myHeaders.append("mm-client-id", "mml");
const requestOptions = {
method: "GET",
headers: myHeaders,
redirect: "follow"
};
fetch("https://story.api.mimiland.io/v1/stories/live/me/20/0", requestOptions)
.then((response) => response.text())
.then((result) => console.log(result))
.catch((error) => console.error(error));
Get Story My Friend
Request
GET /v1/stories/live/40/0 HTTP/1.1
Host: story.api.mimiland.io
Content-Type: application/json
mm-client-id: mml
mm-user-id: 6552e9dd1f835ac7ca4ba3ec
Authorization: bearer v4.public.eyJhZC*****5xTtpdbQIs
const myHeaders = new Headers();
myHeaders.append("Content-Type", "application/json");
myHeaders.append("mm-client-id", "mml");
myHeaders.append("mm-user-id", "6552e9dd1f835ac7ca4ba3ec");
myHeaders.append("Authorization", "bearer v4.public.eyJhZC*****5xTtpdbQI");
const requestOptions = {
method: "GET",
headers: myHeaders,
redirect: "follow"
};
fetch("https://story.api.mimiland.io/v1/stories/live/40/0", requestOptions)
.then((response) => response.text())
.then((result) => console.log(result))
.catch((error) => console.error(error));
Get Other Live Story
Request
GET /v1/stories/live/friend/650ad42b7f60e4b804d96bc0/10/0 HTTP/1.1
Host: story.api.mimiland.io
Authorization: bearer v4.public.eyJhZC*****5xTtpdbQI
mm-user-id: 6552e9dd1f835ac7ca4ba3ec
mm-client-id: mml
GET /v1/stories/live/friend/650ad42b7f60e4b804d96bc0/10/0 HTTP/1.1
Host: story.api.mimiland.io
Authorization: bearer v4.public.eyJhZC*****5xTtpdbQI
mm-user-id: 6552e9dd1f835ac7ca4ba3ec
mm-client-id: mml
Get Archive Stories
Request
GET /v1/stories/archives/20/0 HTTP/1.1
Host: story.api.mimiland.io
mm-user-id: 65646591714177dcf46462dd
mm-client-id: mml
Authorization: bearer v4.public.eyJhZC*****5xTtpdbQI
const myHeaders = new Headers();
myHeaders.append("mm-user-id", "65646591714177dcf46462dd");
myHeaders.append("mm-client-id", "mml");
myHeaders.append("Authorization", "bearer v4.public.eyJhZC*****5xTtpdbQI");
const requestOptions = {
method: "GET",
headers: myHeaders,
redirect: "follow"
};
fetch("https://story.api.mimiland.io/v1/stories/archives/20/0", requestOptions)
.then((response) => response.text())
.then((result) => console.log(result))
.catch((error) => console.error(error));
Last updated