如何在没有过期的情况下从Dropbox获取图像内容网址?

时间:2016-05-18 13:52:53

标签: android dropbox dropbox-api

我正在尝试从Dropbox获取图片网址,然后我按照文档中的以下代码进行操作。

 try {
        Entry directory = dropboxApi.metadata("/", 1000, null, true, null);
        directory.mimeType = "image*//*";
        for (Entry entry : directory.contents) {
            DropboxAPI.DropboxLink link = dropboxApi.media(entry.path, false);
            if (link.url.contains(".jpeg") || link.url.contains(".png") || link.url.contains(".jpg"))
                files.add(link.url);
        }
    } catch (DropboxException e) {
        e.printStackTrace();
    }

根据此代码,我可以获取图片网址。但它不是在下班后工作。 在我的场景中,我想获取图像URL,然后将其发送到服务器API。因此,当我检索其他API时,我将获得图像URL,我发送的内容。获得URL后,我只想将其设置为imageview。

我已验证了此link。我使用share方法获得了不同的链接。但我不知道如何将其设置到我的ImageView中,而使用媒体方法我可以获取URL,我可以将其设置为ImageView。

请有人帮我解决这个问题

如果我为共享网址发出Http请求,那么我将获得带有下载选项的图像名称。

enter image description here

我有16个标题。

enter image description here

从此我没有得到任何线索。没有标题名称包含Location.There内容 - 盗版 - 策略,它给出了一些url值组合。但它也没相关。

0 个答案:

没有答案