You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to golang-nuts
I want to send []byte data over http via post on Google App Engine in
Go. How do I construct bodyType and, body for the request using the
package http?
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to ThePiachu, golang-nuts
bodyType is your Content-Type. You can leave it blank, or "application/octet-stream", but you probably know the type of data and should set it to what the server expects.