2011-10-17 2 views
4

내 웹 사이트에서 내 iPhone 앱 yycParking에 대한 Google의 리치 스 니펫에 대한 코드를 설정했습니다. 관련 HTML은 다음과 같습니다iPhone 앱용 Google 리치 스 니펫이 작동하지 않습니다.

<div itemscope itemtype="http://schema.org/SoftwareApplication"> 
    <!-- ... --> 
    <h2 class="txt-align-center" itemprop="description"> 
    <strong>yycParking</strong> provides real time updates of parking in downtown Calgary 
    </h2> 
    <!-- ... --> 
    <div class="two-column last"> 
    <!-- ... --> 
     <p>We created <strong itemprop="name">yycParking</strong> to enhance a service provided by ...</p> 
    <!-- ... --> 
    </div> 
    <div class="two-column last txt-align-right"> 
    <!-- ... --> 
     <a title="Download the YYC Parking App from the iTunes store now" href="http://itunes.apple.com/ca/app/yycparking/id460852653?mt=8" target="_blank" itemprop="url"> 
     <img class="alignnone size-full wp-image-436" title="app-store-badge" src="http://randomtype.ca/cms/assets/app-store-badge.png" alt="" /> 
     </a> 
    <!-- ... --> 
    </div> 
    <p> 
    <meta itemprop="image" content="http://randomtype.ca/cms/assets/app-icon-124x124.png" /> 
    </p> 
</div> 
당신은 내가 다음과 같은 요소를 포함 시켰습니다 위의 HTML에서 볼 수

:

  • 스키마 : itemscope itemtype="http://schema.org/SoftwareApplication"
  • 설명 : itemprop="description"
  • 이름 : itemprop="name"
  • URL : itemprop="url"
  • 이미지 : itemprop="image"

rich snippet software application specs을 읽는 것으로부터 나는 필요한 항목 4 개를 찾았으며 내가 따르고있는 스키마를 적절하게 식별했다고 생각합니다.

Rich Snippet testing tool을 통해 실행하면 스 니펫을 iPhone 앱으로 식별하지 않고 "Cut the Rope"와 같은 멋진 이미지를 건너 뜁니다.

내가 누락 된 항목이 있습니까? 캘거리 주차 시장을 지배하고 싶습니다. 그러나 Google은 저를 붙들고 있습니다! 1 : P

답변

1

보인다, 당신은 가격평균을 놓치고있어 평점은입니다.
무엇이 필요하고 무엇이 아닌지에 대한 엄격한 정의가 있다면 단서가 없지만이 두 가지를 추가하면 문제가 해결됩니다.

OS 및 버전과 같은 정보를 추가하는 것도 좋습니다.

작동 예제 here을 볼 수 있습니다. 나는이 주제에 대한 전문가, 난 그냥 컷에게 로프 페이지를 편집하고 코드가 최소한했지만 여전히 일까지 테스트를 계속하고 있지 않다 : PS

<dl> 
    <dt>Updated:</dt> 
    <dd><time itemprop="datePublished">September 29, 2011</time></dd> 

    <dt>Current Version:</dt> 
    <dd itemprop="softwareVersion">1.1.1</dd> 

    <dt itemprop="operatingSystems" content="iOS">Requires iOS:</dt> 
    <dd>4.0 and up</dd> 

    <dt>Size:</dt> 
    <dd itemprop="fileSize">14.2 MB</dd> 

    <dt>Price:</dt> 
    <dd itemprop="offers" itemscope itemtype="http://schema.org/Offer"> 
     <span itemprop="price">9.99$</span> 
    </dd> 

    <dt>Average Rating:</dt> 
    <dd itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating"> 
     <span itemprop="ratingValue">3.6</span> 
     (in <span itemprop="ratingCount">931728</span> ratings) 
    </dd> 
</dl> 

. : P

+0

Brilliant !! 정말 끝내 주는데, 그 노력에 정말 감사드립니다. 나는 완전히 다른 페이지를 만들고 그것을 테스트하기 위해 로프를 페어링하는 것을 생각하지 않았다. 현상금 잘 받았습니다! –

+0

예, 그냥 두 번째 현상금을 받았습니다! 감사! :디 –

0

실제 "오류"는 테스트 도구의 버그 인 것 같습니다. 그러나, 나는 당신이 언급 한 "로프를 잘라"예를 보았고, 실제로 이미지와 다른 형식을 당기는 무슨 것은 Open Graph protocol입니다 :

<meta property="og:title" content="Cut the Rope" /> 
<meta property="og:type" content="game" /> 
<meta property="og:image" content="http://chillingo.com/media/games/small/240x100_cuttherope.png" /> 
<meta property="og:site_name" content="Chillingo"> 
+0

코드로 내 html을 업데이트하고 변경 사항이 있는지 확인합니다. –

+0

Open Graph 코드가 차이를 만든 것처럼 보이지 않습니다. –

+0

밧줄을 깎지 않고 단일 오그를 사용하지 마십시오. ... –

관련 문제