Ich habe Probleme mit Leseformular Anfrage. AuchAsyncTask LIFX Bulb resposne
public JSONArray listLights()
{
try
{
URL adres = new URL("https://api.lifx.com/v1/lights/all");
HttpURLConnection polaczenie = (HttpURLConnection) adres.openConnection();
polaczenie.setRequestProperty("Authorization", "Bearer " + apiKey);
polaczenie.setRequestMethod("GET");
BufferedReader wejscie = new BufferedReader(new InputStreamReader((polaczenie.getInputStream())));
StringBuilder odpowiedz = new StringBuilder();
String json;
while ((json = wejscie.readLine()) != null)
odpowiedz.append(json);
wejscie.close();
return new JSONArray(odpowiedz.toString());
}
catch (Exception wyjatek)
{
wyjatek.printStackTrace();
}
return new JSONArray();
}
ich hinzugefügt AndroidManifest Internetzugang.
Willkommen, um irgendwelche Kommentare zu hinterlassen. : P
EDIT:
I Internet googeln und fand Teillösung. AsyncTask hinzugefügt, aber jetzt erhalte ich den Antwortcode '429'.
public class JSONTask extends AsyncTask<String, String, String>
{
String apiKey = "blah_blah_blah";
String txtresult;
@Override
protected String doInBackground(String... params) {
HttpsURLConnection connection = null;
BufferedReader reader = null;
try
{
URL adres = new URL(params[0]);
HttpsURLConnection polaczenie = (HttpsURLConnection) adres.openConnection();
polaczenie.setRequestProperty("Authorization", "Bearer " + apiKey);
polaczenie.setRequestMethod("GET");
System.out.println(polaczenie.getResponseCode());
InputStream stream = polaczenie.getInputStream();
reader = new BufferedReader(new InputStreamReader(stream));
StringBuffer buffer = new StringBuffer();
String line = "";
while ((line = reader.readLine()) != null)
{
buffer.append(line);
}
return buffer.toString();
}
catch (MalformedURLException e)
{
e.printStackTrace();
}
catch (IOException e)
{
e.printStackTrace();
}
finally {
if (connection != null)
connection.disconnect();
try
{
if (reader != null)
reader.close();
}
catch (IOException e)
{
e.printStackTrace();
}
}
return null;
}
@Override
protected void onPostExecute(String s)
{
super.onPostExecute(s);
widok.setText(s);
}
}
Mein aktueller StackTrace
EDIT2:
Neuer Tag, neue Überraschung. Ich stelle fest, dass ich alle 10 Versuche einmal/zweimal mit Bulb verbinde. Irgendwelche Ideen?
Ich weiß, ich sende nur eine Anfrage pro einem Klick. public void sendGetRequest (Ansicht anzeigen) { new JSONTask(). Execute ("https://api.lifx.com/v1/lights/all"); } – nextion24