Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to design an app which downloads the appropriate sound files from my Google cloud storage account. The app does not access the users account but my own.

My reading has led me to believe that the most appropriate model is The Service account https://code.google.com/p/google-api-java-client/wiki/OAuth2#Service_Accounts

Unfortunately the developers have decided not to provide an example with Android. They do provide a nice example with just plain Java, which works http://samples.google-api-java-client.googlecode.com/hg/storage-serviceaccount-cmdline-sample/instructions.html?r=default

I tried to adapt this for Android and have run into problems.

GoogleCredential credential =
        new GoogleCredential.Builder().setTransport(HTTP_TRANSPORT)
            .setJsonFactory(JSON_FACTORY).setServiceAccountId(SERVICE_ACCOUNT_EMAIL)
            .setServiceAccountScopes(STORAGE_SCOPE)
            .setServiceAccountPrivateKeyFromP12File(new File("key.p12")).build();

In Google's example they pass the key.p12 file , However on Android when I put the file in the res/raw folder it seems the only way I have of accessing it is as an input stream. I can't find an elegant way to get a file to pass to JSON.

This all leads me to believe I must be doing something wrong. Should I be using the key.p12 Should I be using the "service account model". Is there an example out there /

Thanks Ryan


An Update I managed to achieve my goal of getting it to work but my solution feels clunky to me and I am sure it is not the way intended

What I did was add the key.p12 as a raw/resource which I opened as as input stream. Which I then converted to the private key using the libraries as seen in the example.

http://www.flexiprovider.de/examples/ExampleSMIMEsign.html

My code looks like this

Security.addProvider(new de.flexiprovider.core.FlexiCoreProvider());
    // Next, we have to read the private PKCS #12 file, since the the
    // private key used for signing is contained in this file:
    DERDecoder dec = new DERDecoder(getResources().openRawResource(
            R.raw.key));
    PFX pfx = new PFX();
    try {
        pfx.decode(dec);
        SafeBag safeBag = pfx.getAuthSafe().getSafeContents(0)
                .getSafeBag(0);
        PKCS8ShroudedKeyBag kBag = (PKCS8ShroudedKeyBag) safeBag
                .getBagValue();
        char[] password = "my password from google api".toCharArray();
        privKey = kBag.getPrivateKey(password);
        new AsyncLoadStorage(this).execute();
    } catch (ASN1Exception e) {

But the whole thing is ugly and I would like a cleaner solution

share|improve this question

1 Answer

I don't know your exact situation, but could you just make these files completely public so that no auth at all is required to download them?

share|improve this answer
I know I did not have to use authentication but my primary aim is to learn Android rather than completing the app. I did find a neater solution by using PrivateKey serviceAccountPrivateKey = PrivateKeys.loadFromKeyStore(KeyStore.getInstance("PKCS12"), getResources().open‌​RawResource(R.raw.key), "notasecret", "privatekey", "notasecret"); This did not require external libraries. In the end however I moved from Google cloud storage to Amazon S3 and found that it is much better presented for "students" such as myself. – Ryan Heitner Sep 23 '12 at 6:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.