Conectando-se a HTTPS com certificados autoassinados no iOS

Adicione o seguinte ao seu NSURLConnectionDelegate – (BOOL)connection:(NSURLConnection *)connection canAuthenticateAgainstProtectionSpace:(NSURLProtectionSpace *)protectionSpace { return self.allowSelfSigned && [protectionSpace.authenticationMethod isEqualToString:NSURLAuthenticationMethodServerTrust];}- (void)connection:(NSURLConnection *)connection didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge { NSURLCredential *credential = [NSURLCredential credentialForTrust:challenge.protectionSpace.serverTrust]; [challenge.sender useCredential:credential forAuthenticationChallenge:challenge];} …

Continuar lendo

Protocolo de descarte em URIs

Portanto, este protocolo é muito simples. FAZER: //somesite.com/somepath/somefile.jsou parente/somepath/somefile.js NÃO: http://somesite.com/somepath/somefile.js Se você usar //somesite.com/somepath/somefile.jspara todas as suas referências, o navegador preencherá o protocolo para você. Portanto, se você estiver …

Continuar lendo