I have a flex android mobile application and I want to implement facebook's SSO.
I was reading facebook's android SSO tutorial and it said:
"You need to put your Android application signature into your Facebook app settings."
My application's signature was generated by ADT certificate:
adt -certificate -validityPeriod 25 -cn SelfSigned 1024-RSA file.pfx mypassword
But facebook suggests using keytool to export the key and that apparently requires an alias. Because doing the command below gives me an alias not found error:
keytool -exportcert -storetype pkcs12 -keystore file.pfx -storepass mypassword
How am I supposed to export my certificate?