获取 web.whatsapp.com 的源代码


Get source code of web.whatsapp.com

是否可以获取 web.whatsapp.com 的源代码?

$ch = curl_init("https://web.whatsapp.com/");
$fp = fopen("example_homepage.txt", "w");
curl_setopt($ch, CURLOPT_FILE, $fp);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_exec($ch);
curl_close($ch);
fclose($fp);

它不起作用。我也尝试了file_get_contents()。

不,这是不可能的,只要WhatsApp公司不开源它。