0

私はArduino Galileoを使用して、REST APIを使用してplot.lyにグラフをプロットしています。このコードで

  client.println("POST /clientresp HTTP/1.1");
  //client.println("Host: 107.21.214.199");
  client.println("Host: plot.ly");
  client.println("User-Agent: Galileo/0.0.1");
  client.print("Content-Length: ");

  int content_length = 276 + username.length() + api_key.length() + temperaturesY.length() + timesX.length();
  client.println(content_length);
  client.println();
  client.print("version=2.3&origin=plot&platform=Galileo&un=");
  client.print(username);
  client.print("&key=");
  client.print(api_key);
  client.print("&args={\"x\":");
  client.print(timesX);
  client.print(",\"y\":");
  client.print(temperaturesY);
  client.print(",\"type\":\"scatter\",\"mode\":\"lines+markers\",\"visible\":true}&kwargs={\"filename\":\"galileo_temperature\",\"fileopt\":\"overwrite\",\"style\":{\"type\":\"line\"},\"layout\":{\"title\":\"Galileo CPU Temperature\"},\"world_readable\":true}");
  client.println();

次のエラーが表示されます。

{"url": "", "message": "", "warning": "", "filename": "", "error": "Missing required POST parameters: platform un key origin args kwargs"}

これをどのように適応させるのですか?

4

2 に答える 2

1

コードの後:

client.println("POST /clientresp HTTP/1.1");
client.println("Host: plot.ly");
client.println("User-Agent: Galileo/0.0.1");

content-type ヘッダーを追加します。

client.println("Content-Type: application/x-www-form-urlencoded");

それにより、チャートをうまくプロットすることができました

于 2016-02-26T17:25:34.100 に答える