2015-05-18 48 views
0

张贴我的AdSense代码到我的Ruby on Rails应用程序后,我收到这样的信息:您的AdSense申请状态:内容不够丰富

内容不够丰富:要获得批准的AdSense和网站上展示相关的广告,您的网页上需要有足够的文字才能供我们的专家查看,并且我们的抓取工具能够确定您的网页的内容。

enter image description here

该消息还包括这些建议(我想我第一次一个可能的例外是满足那是因为它是一个应用不是博客):

  • 您的内容应包含完整的句子和段落,而不仅仅是标题。
  • 确保您的网站在申请AdSense之前已完全构建并启动 - 请勿在您的网站处于测试阶段或 “正在建设中”阶段或仅包含网站模板时申请。
  • 将广告代码放置在您网站的实时页面上。它不一定是主页,但除了 AdSense广告代码以外的测试页面将不会被批准。
  • 为访问者提供清晰的导航系统,以便他们可以轻松找到您网站的所有部分和页面。

application.html.erb

<body> 
    <%= render 'layouts/header' %> 
    <div class="jumbotron"> 
     <p class="text-center"> 
     <%= yield :jumbotron %> <!-- this variable should be assigned in your controller action--> 
     </p> 
    </div> 
    <% flash.each do |name, msg| %> 
     <%= content_tag(:div, msg, class: "alert alert-info") %> 
    <% end %> 
    <div class="container-fluid"> 
     <div class="container"> 
     <div class="col-md-9"> 
      <%= yield %> # includes pages/home (root route) 
     </div> 
     <div class="col-md-3"> 
      <% if current_user.present? %> 
      <%= render 'layouts/sidebar' %> # includes _recommendations 
      <% end %> 
     </div> 
    </div> 
    </div> 
</body> 

_recommendations.html.erb

<div class="recommendations-padding"> 
    <div class="ad"> 
     <p>This is a test to see how the ads will fit here. This is a test to see how the ads will fit here. This is a test to see how the ads will fit here. This is a test to see how the ads will fit here. This is a test to see how the ads will fit here. This is a test to see how the ads will fit here. This is a test to see how the ads will fit here. This is a test to see how the ads will fit here.</p> 
    </div> 
    <div class="ad"> 
     <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> 
     <!-- Recommendation 1 --> 
     <ins class="adsbygoogle" 
      style="display:block" 
      data-ad-client="ca-pub-2458646218429910" 
      data-ad-slot="6447006986" 
      data-ad-format="auto"></ins> 
     <script> 
     (adsbygoogle = window.adsbygoogle || []).push({}); 
     </script> 
    </div> 
    <div class="ad"> 
     <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> 
     <!-- Recommendation #2 --> 
     <ins class="adsbygoogle" 
      style="display:block" 
      data-ad-client="ca-pub-2458646218429910" 
      data-ad-slot="3293344589" 
      data-ad-format="auto"></ins> 
     <script> 
     (adsbygoogle = window.adsbygoogle || []).push({}); 
     </script> 
    </div> 
    <div class="ad"> 
     <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> 
     <!-- Recommendation 3 --> 
     <ins class="adsbygoogle" 
      style="display:block" 
      data-ad-client="ca-pub-2458646218429910" 
      data-ad-slot="9400473387" 
      data-ad-format="auto"></ins> 
     <script> 
     (adsbygoogle = window.adsbygoogle || []).push({}); 
     </script> 
    </div> 
</div> 

home.html.erb

<% if logged_in? %> 
    <% if @user.habits.committed_for_today.any? %> 
    <div class="page-header"> 
    <%= link_to habits_path(@habits) do %> 
     <h1><b>Habits</b></h1> 
    <% end %> 
    </div> 
    <div class="add-padding"> 
     <%= render partial: 'habits', locals: {habits: @habits} %> 
    </div> 
    <% end %> 

    <% if @user.valuations.any? %> 
    <div class="page-header"> 
    <%= link_to valuations_path(@valuations) do %> 
     <h1><b>Values</b></h1> 
    <% end %> 
    </div> 
    <div class="add-padding"> 
     <%= render @valuations %> 
    </div> 
    <% end %> 

    <% if @user.goals.any? %> 
    <div class="page-header"> 
     <%= link_to goals_path(@goals) do %> 
     <h1><b>Goals</b></h1> 
     <% end %> 
    </div> 
    <% end %> 
    <div class="add-padding"> 
    <% if @user.goals.unaccomplished.any? %> 
     <%= render @unaccomplished_goals %> 
    <% end %> 
    <% if @user.goals.accomplished.any? %> 
    <div class="gold-standard"> 
     <%= render @accomplished_goals %> 
    </div> 
    <% end %> 
    </div> 

    <% if @user.quantifieds.any? %> 
    <div class="page-header"> 
    <%= link_to quantifieds_path(@quantifieds) do %> 
     <h1><b>Stats</b></h1> 
    <% end %> 
    </div> 
    <% end %> 
    <div class="add-padding"> 
    <% if @user.quantifieds.averaged.any? %> 
    <h2><b>Averaged</b></h2> 
     <%= render @averaged_quantifieds %> 
    <% end %> 
    <% if @user.quantifieds.instance.any? %> 
    <h2><b>Instance</b></h2> 
     <%= render @instance_quantifieds %> 
    <% end %> 
    </div> 

你对我如何获得批准Adsense有什么建议吗?

谢谢!

回答

0

我被批准通过我的博客张贴谷歌广告。一旦我获得了谷歌的批准,他们可以让您在任何网站上投放广告。得分了!

+0

您的申请被接受了吗? –

+0

是@MatiasCicero。已更新答案。这是一个圆满的方式。祝你好运! –

+0

如果您想自己看看,我将网站名称更改为http://www.livetochallenge.com/ :)他们位于@MatiasCicero的侧边栏上。我只有2个广告。我认为谷歌限制你4页的广告。 –