twitterkit studio new kit framework developer iphone twitter sharekit

iphone - studio - twitterkit ios



no se pudo autenticar a OAuth mientras se usa Twitter desde sharekit en la aplicaciĆ³n iphone (1)

Estoy implementando Facebook y Twitter compartiendo usando sharekit en la aplicación de iPhone. El recurso compartido de Facebook funciona bien, pero el recurso compartido de Twitter genera el error "no se pudo autenticar a OAuth".


Estaba teniendo el mismo problema, esto lo solucionó:

https://github.com/ideashower/ShareKit/issues/229

Resumen:

Cambie SHKTwitter.m en las líneas 54-56 de

https://twitter.com/

a

https://api.twitter.com/

Me gusta esto:

self.authorizeURL = [NSURL URLWithString:@"https://api.twitter.com/oauth/authorize"]; self.requestURL = [NSURL URLWithString:@"https://api.twitter.com/oauth/request_token"]; self.accessURL = [NSURL URLWithString:@"https://api.twitter.com/oauth/access_token"];

y en la línea 323, de http a https:

OAMutableURLRequest *oRequest = [[OAMutableURLRequest alloc] initWithURL:[NSURL URLWithString:@"https://api.twitter.com/1/statuses/update.json"] consumer:consumer token:accessToken realm:nil signatureProvider:nil];`