2015-12-11 1 views
0

Работает над созданием щебетать карт. У меня есть следующие метатеги в заголовке страницы. По какой-то причине, когда я помещал ссылку в свой твит, карта твиттера не отображается. Какие-либо предложения?Twitter-карта не отображается даже с мета-тегами

<!--- og: tags to create nice facebook & twitter posts for an auction ---> 
<meta name="twitter:card" content="summary" /> 
<meta name="twitter:site" content="@herberzt_dev" /> 
<meta name="twitter:creator" content="@herberzt_dev" /> 
<% if [email protected]? %> 
    <meta property="og:title" content="<%= @item.name %>"/> 
    <meta property="og:type" content="website"/> 
    <meta property="og:url" content="<%= request.original_url %>"/> 
    <meta property="og:image" content="<%= @item.photo(:thumbnail) %>"/> 
    <meta property="og:description" content="<%= @item.description %>"/> 
    <meta name="twitter:site" content="@herberzt_dev"> 
<% elsif [email protected]? %> 
    <meta property="og:title" content="<%= @auction.name %>"/> 
    <meta property="og:type" content="website"/> 
    <meta property="og:url" content="<%= request.original_url %>"/> 
    <meta property="og:image" content="<%= @auction.photo %>"/> 
    <meta property="og:description" content="<%= @auction.description %>"/> 
<% end %> 

ответ

Смежные вопросы