Get Detail Story
View story details such as comments, images, number of reactions love
Get Story Detail Default
Request
GET /v1/stories/6582c2e34aceefb0a1139035/info 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*****5xTtpdbQI
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/6582c2e34aceefb0a1139035/info", requestOptions)
.then((response) => response.text())
.then((result) => console.log(result))
.catch((error) => console.error(error));
Get Story Detail Comment
Request
GET /v1/stories/6582c2e34aceefb0a1139035/cmt 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/6582c2e34aceefb0a1139035/cmt", requestOptions)
.then((response) => response.text())
.then((result) => console.log(result))
.catch((error) => console.error(error));
Get Story Detail Images
Request
GET /v1/stories/657fb66f4aceefb0a1138fae/img 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/657fb66f4aceefb0a1138fae/img", requestOptions)
.then((response) => response.text())
.then((result) => console.log(result))
.catch((error) => console.error(error));
Get Story Detail Static
Request
GET /v1/stories/6582c2e34aceefb0a1139035/static 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/6582c2e34aceefb0a1139035/static", requestOptions)
.then((response) => response.text())
.then((result) => console.log(result))
.catch((error) => console.error(error));
Get Story Detail Love
Request
GET /v1/stories/6584f600e613b98ab86f6345/love 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/6584f600e613b98ab86f6345/love", requestOptions)
.then((response) => response.text())
.then((result) => console.log(result))
.catch((error) => console.error(error));
Last updated