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
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: mmlconst 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
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*****5xTtpdbQIsconst 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
Get Archive Stories
Last updated