OnCreate() may not be a bad place if you are either ok with having it executed always when the Activity is started or you are ready to check if this has been done already (as other answers also suggest). You could set a flag in SharedPreferences for this purpose, as this flag also survives complete shutdown of the app and restart.
Having said that: you still need to put the http request in a background thread if you ever want to make your app available on Honeycomb or even Ice Cream Sandwich, as those systems kill the app if there is any network access in the UI thread.