- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在构建一个 Android 应用程序,它使用 Instagram API 来检索 Instagram 图片,然后在我的应用程序中显示它们。
我一直在尝试使用我在 this 上找到的唯一教程让它工作,与 this 相同.
我已经能够通过在 Webview 中加载 Instagram 身份验证来完成第一部分,但我在第二部分遇到了问题,实际上是通过获取 Instagram imageUrl 从我的 Instagram 帐户获取图像。
特别是我在这部分遇到了问题:
class LongOperation extends AsyncTask<String, Void, String> {
static String accessTokenString, id, username, urlString, imageUrlString;
@Override
protected String doInBackground(String... params) {
try {
URL url = new URL(tokenURLString);
HttpsURLConnection httpsURLConnection = (HttpsURLConnection) url.openConnection();
httpsURLConnection.setRequestMethod("POST");
httpsURLConnection.setDoInput(true);
httpsURLConnection.setDoOutput(true);
OutputStreamWriter outputStreamWriter = new OutputStreamWriter(httpsURLConnection.getOutputStream());
outputStreamWriter.write("client_id="+client_id+
"client_secret="+ client_secret +
"grant_type=authorization_code" +
"redirect_uri="+CALLBACKURL+
"code=" + token);
outputStreamWriter.flush();
Log.i(TAG, "before streamToString");
String response = streamToString(httpsURLConnection.getInputStream());
Log.i(TAG, "after streamToString");
JSONObject jsonObject = (JSONObject) new JSONTokener(response).nextValue();
accessTokenString = jsonObject.getString("access_token"); //Here is your ACCESS TOKEN
id = jsonObject.getJSONObject("user").getString("id");
username = jsonObject.getJSONObject("user").getString("username");
//This is how you can get the user info.
//You can explore the JSON sent by Instagram as well to know what info you got in a response
}
catch (Exception e)
{
Log.e(TAG, "ERROR AsyncTask");
}
return null;
}
//converts Stream to String
public String streamToString(InputStream p_is)
{
try
{
BufferedReader m_br;
StringBuffer m_outString = new StringBuffer();
m_br = new BufferedReader(new InputStreamReader(p_is));
String m_read = m_br.readLine();
while(m_read != null)
{
m_outString.append(m_read);
m_read =m_br.readLine();
}
Log.d(TAG, "m_outString: " + m_outString.toString());
return m_outString.toString();
}
catch (Exception e)
{
Log.e(TAG, "ERROR streamToString");
}
return null;
}
@Override
protected void onPostExecute(String result) {
Log.d(TAG, "Executed AsyncTask");
}
@Override
protected void onPreExecute() {
Log.d(TAG, "About to execute AsyncTask");
}
@Override
protected void onProgressUpdate(Void... values) {
}
}
我想知道 token 变量是什么? (doInBackground 方法,在 outStreamWriter 参数中)
我目前正在放置来自 AuthWebViewClient 的 request_token。在我的 WebView 中按 Authorize 后,AuthWebViewClient 成功从 Instagram 获取 request_token。
但是在尝试将 InputStream 转换为字符串时出现错误!
06-16 14:14:42.302: D/tellmeaboutit(31244): About to execute AsyncTask
06-16 14:14:42.642: I/tellmeaboutit(31244): request_token: 235958nvzdj243u9o974jd1490139238
06-16 14:14:42.642: I/tellmeaboutit(31244): before streamToString
06-16 14:14:42.792: D/tellmeaboutit(31244): ERROR AsyncTask
打印“在 streamToString 之前”,然后打印“ERROR AsyncTask”,永远不会到达“在 streamToString 之后”。
我通过单击按钮启动 LongOperation:
doSomethingIunno.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
new LongOperation().execute("");
}
});
这是怎么回事?为什么在我尝试将 InputStream 转换为字符串时出现错误?
最佳答案
好吧,与其构建自己的代码,不如尝试使用这个 library反而 ?查看“instagram get feeds”部分的自定义 ui 示例。
关于Android Instagram API : how to retrieve pictures,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24250119/
我想创建一个(最好)HTML 代码,将内容从另一个小页面加载到当前网站。小页面的内容是一组带有动态变化的图像的 anchor (因此将它们编码到要显示它们的页面中是不切实际的)。这样的功能是否可以在纯
这个问题在这里已经有了答案: What does a space mean in a CSS selector? i.e. What is the difference between .clas
我正在尝试在网站上放置响应图像。我有以下代码 图片元素的大小将由包含的 div 决定。 包含的 div 的大小将是随机的。可以直接放在.container里,也可以放在.col-sm-
我正在使用 Opentok.js,我想以画中 Canvas 局显示订阅者和发布者。当我调整窗口大小时,它应该具有响应性并保持比例,以及如何以全屏方式获取视频,即使视频是“320x240”吗? 最佳答案
html 元素 video有一个名为 disablePictureInPicture 的属性虽然它似乎只适用于 chrome,但它工作得很好。 由于我只能找到有关此问题的旧帖子,这些帖子最终没有解决或
我正在尝试在我的应用中支持分屏功能。 目前目标SDK是27 defaultConfig { applicationId "com.myvestige.vestigedeal"
编辑:本文末尾的 Anwser。 借助内置的 Facebook SDK 函数 Request(),我正在尝试获取 Facebook 用户的头像。 我正在使用 /me/picture 调用来获取个人资料
错误消息 java.lang.IllegalStateException: enterPictureInPictureMode: Current activity does not support p
我可以使用 jquery(或 javascript)强制 html5 video 播放器以画中画 模式播放吗?(下图) . 这是我使用 jquery 3.3.1(由 Google 托管)的个人网站。现
假设文本 = T,图像 = M 桌面订单: M T 需要手机下单: T M 我需要桌面和移动设备上的响应行为。 .container{width:100%;} #image {width:50%;}
使用相机 API 拍照后,这张照片会显示在屏幕/此 Activity 上。我想将这张覆盖整个屏幕的图片发送到另一个名为 PictureEditor 的 Activity 。在那里我将添加可以编辑图片的
我使用 YouTube iframe js API 在 Firefox 中收到此警告 如何处理? 最佳答案 YouTube API 正在向浏览器发送调用,但浏览器响应说“我不支持”,然后在控制台中让您
我正在使用 标签。我的目标群体使用现代浏览器,所以尽快 Firefox supports WebP没有必要使用标签。 现在: 很快: 有没有办法实现 alt
Hello Together 遵循我的代码: public class SampleData : DropCreateDatabaseIfModelChanges { protecte
我在为主 设置正确的宽度和高度时遇到问题img src 块内。 如果我把它留给 宽度="100%"高度="100%"视觉上还可以,但 Google 搜索 PageSpeed
我正在尝试使图片元素工作,但它不会加载后备 img Locat
打印下面的图片时遇到一些问题。 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 (16 times) 2 2 2 2 2 2 2 2 2 2 2 2
我想不通为什么我的 img 在 picture 标签中不想显示?有任何想法吗? 谢谢! 最佳答案 你的图片路径有误。看我的例子
我有一种情况需要将 CSS 文件中的图像提供给 goJs go.picture 方法。不是来自交叉起源。如何通过。 GO(go.Picture, {source: 'images/sample.png
我需要一些帮助来理解为什么有人会在网页中加载这样的图像?我的意思是最后的两个标签和标签。 如何决定加载哪个图像? 背后有框架吗? 这是否意味着它加载两个图像并以不同的分辨率在它们之间切换?
我是一名优秀的程序员,十分优秀!