shareToFacebook.blade.php 779B

12345678910111213141516171819202122
  1. <!DOCTYPE html>
  2. <html lang="zh-Hant-TW" prefix="og: http://ogp.me/ns#">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <meta property="og:type" content="website" />
  8. <meta property="og:title" content="{{ $webTitle }}" />
  9. <meta property="og:description" content="{{ $webDesc }}" />
  10. <meta property="og:image" content="{{ $imagePath }}" />
  11. <meta property="og:image:type" content="image/jpg" />
  12. <meta property="og:image:width" content="1200" />
  13. <meta property="og:image:height" content="630" />
  14. <title> {{ $webTitle }} </title>
  15. </head>
  16. <body>
  17. <script>
  18. location.href = '{{ $redirectUrl }}';
  19. </script>
  20. </body>
  21. </html>