Skip to content

Instantly share code, notes, and snippets.

@BramYeh
Last active March 29, 2017 12:06
Show Gist options
  • Save BramYeh/ce8c96baecd61aa64b59fcb2f8234057 to your computer and use it in GitHub Desktop.
Save BramYeh/ce8c96baecd61aa64b59fcb2f8234057 to your computer and use it in GitHub Desktop.
Use JavaScript that injects cookies
#pragma mark - WKNavigationDelegate
- (void)webView:(WKWebView *)webView didFinishNavigation:(WKNavigation *)navigation {
[webView evaluateJavaScript:@"document.cookie ='CookieKey=CookieValue'" completionHandler:nil];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment