VB.NET を使用して Asana Api にデータをポストしようとしていますが、
問題なくデータを取得できますが、データを取り戻すのに苦労しています。以下は、タスク内のメモを更新しようとしている例です。
Dim add As String = path + "tasks/" + t_id.Text
request = WebRequest.Create(add)
' Set the authentication
setauth()
' Set type to POST
request.Method = "POST"
request.KeepAlive = True
request.ContentType = "application/x-www-form-urlencoded"
data = "-d notes=" + t_notes.Text
byteData = UTF8Encoding.UTF8.GetBytes(data)
request.ContentLength = byteData.Length
'Write(data)
Try
ps = request.GetRequestStream()
ps.Write(byteData, 0, byteData.Length)
Finally
If Not ps Is Nothing Then ps.Close()
End Try
response = request.GetResponse()
404 エラーが発生し続けますが、どこが間違っているのかわかりません。