2011-10-22 46 views

Respuesta

12

Sí ... Cambiar http a https en el método initOAuthWithDelegate dentro SA_OauthTwitterEngine.m y esto debería solucionar el problema - de este modo:

self.requestTokenURL = [NSURL URLWithString: @"https://twitter.com/oauth/request_token"]; 
self.accessTokenURL = [NSURL URLWithString: @"https://twitter.com/oauth/access_token"]; 
self.authorizeURL = [NSURL URLWithString: @"https://twitter.com/oauth/authorize"]; 
+0

¡GRACIAS! ¡GRACIAS! ¡GRACIAS! Gran –

+0

, me salvó también ... –

+0

gr8, salvo yo también .. –

0

@NSDestroyer es correcta. Acabo de toparme con esto hoy, y cambiar a https resolvió los problemas. ¡Gracias!

Cuestiones relacionadas