Reputation: 6214
I have an android game written in libGDX (a cross-platform java sdk), and I want to log session data and send it up to an s3 bucket. I don't want to use the aws mobile sdk because I want the application to be platform neutral. I can't find any documentation on this though. How do I make POST requests to s3 from java? I just want to write a new key-value pair to my bucket.
Upvotes: 0
Views: 713
Reputation: 15774
The AWS SDKs make it easy to access the Amazon Web Services. In addition to the mobile SDKs, you have standalone SDKs for Java, PHP or .Net. If you prefer not using the SDKs, you can refer to the documentation of the REST API for directly manipulating the buckets and objects.
Upvotes: 1