You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My web use angular-seo.js and config htm5 link
$locationProvider.html5Mode(true);
My issue is when i copy my link and paste into the shared box on Google plus, Google plus don't parse my website's title and description, and when i do the same thing with Slack chat , Slack display
{{ $root.pageTitle }}
{{ $root.pageDescription }}
With facebook, linkedin, it's normal.
This is my <head> part:
<meta name="fragment" content="!">
<title ng-bind="$root.pageTitle"></title>
I believe that this issue is related to user-agents and how this module is always expecting ?escaped_fragment= in the request URL. I am looking into this for my own implementation of this package and will create a pull request once I find a solution.
My web use angular-seo.js and config htm5 link
$locationProvider.html5Mode(true);
My issue is when i copy my link and paste into the shared box on Google plus, Google plus don't parse my website's title and description, and when i do the same thing with Slack chat , Slack display
{{ $root.pageTitle }}
{{ $root.pageDescription }}
With facebook, linkedin, it's normal.
This is my <head> part:
<meta name="fragment" content="!">
<title ng-bind="$root.pageTitle"></title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="My description">
<meta name="author" content="{{ $root.author }}">
<meta name="copyright" content="© Ideapod {{ $root.today | date:'yyyy' }}">
<meta property="fb:app_id" content="12345678">
<meta property="og:site_name" content="MyWeb">
<meta property="og:image" content="{{ $root.pageImage }}">
<meta property="og:type" content="{{ $root.facebookOpenGraph.type }}">
<meta property="og:url" content="{{ $root.facebookOpenGraph.url }}">
<meta property="og:title" content="{{ $root.pageTitle }}">
<meta property="og:description" content="{{ $root.pageDescription }}">
What's wrong with my code, please let's me know. Thank you very much !
The text was updated successfully, but these errors were encountered: