检索 Post 中的嵌入图像,并将其显示在我的应用程序中
Retrieve embeded image in Post, and display it in my App
如标题所示,我的目标是在我的 iOS/Android 应用程序上显示用户 Post 中的图像。
使用下面 API:
GET https://graph.microsoft.com/v1.0/groups//线程//帖子
只有returnimg的cid。
如何获取信息以便显示图像?
image information example in RED
谢谢,
雷蒙,
如果你有 Base64 源,你可以尝试像这样设置 Image 对象的 src 属性 :
var image = new Image();
image.src = 'data:image/png;base64,iVBORw0K...';
document.body.appendChild(image);
如标题所示,我的目标是在我的 iOS/Android 应用程序上显示用户 Post 中的图像。 使用下面 API:
GET https://graph.microsoft.com/v1.0/groups//线程//帖子
只有returnimg的cid。
如何获取信息以便显示图像? image information example in RED
谢谢, 雷蒙,
如果你有 Base64 源,你可以尝试像这样设置 Image 对象的 src 属性 :
var image = new Image();
image.src = 'data:image/png;base64,iVBORw0K...';
document.body.appendChild(image);