I've a web page and want to show Jenkins' webpage in it hence used iframe like -
<html>
<head>
<title>Dashboard</title>
</head>
<body>
<iframe src="http://xxx.xxx.xx.xx:8080/view/Nightly%20Builds%20/" width="100%" height="100%"></iframe>
</body>
</html>
But http://xxx.xxx.xx.xx:8080/view/Nightly%20Builds%20/ opens with login page and hence content could not be shown directly. Actually I want to show content of the page without login.
Is there any way we can pass authentication details/token to website inside frame?