sistrix 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.document +5 -0
- data/Gemfile +12 -0
- data/LICENSE.txt +20 -0
- data/README.rdoc +59 -0
- data/Rakefile +49 -0
- data/VERSION +1 -0
- data/lib/sistrix.rb +28 -0
- data/lib/sistrix/base.rb +23 -0
- data/lib/sistrix/config.rb +15 -0
- data/lib/sistrix/domain.rb +60 -0
- data/lib/sistrix/domain/age.rb +32 -0
- data/lib/sistrix/domain/competitors/sem.rb +50 -0
- data/lib/sistrix/domain/competitors/seo.rb +52 -0
- data/lib/sistrix/domain/competitors/us.rb +53 -0
- data/lib/sistrix/domain/kwcount/sem.rb +54 -0
- data/lib/sistrix/domain/kwcount/seo.rb +54 -0
- data/lib/sistrix/domain/overview.rb +71 -0
- data/lib/sistrix/domain/pagerank.rb +51 -0
- data/lib/sistrix/domain/pages.rb +51 -0
- data/lib/sistrix/domain/sichtbarkeitsindex.rb +49 -0
- data/lib/sistrix/domain/social/latest.rb +52 -0
- data/lib/sistrix/domain/social/overview.rb +36 -0
- data/lib/sistrix/domain/social/top.rb +52 -0
- data/lib/sistrix/domain/social/url.rb +63 -0
- data/lib/sistrix/keyword.rb +60 -0
- data/lib/sistrix/keyword/domain/sem.rb +59 -0
- data/lib/sistrix/keyword/domain/seo.rb +65 -0
- data/lib/sistrix/keyword/domain/us.rb +61 -0
- data/lib/sistrix/keyword/sem.rb +58 -0
- data/lib/sistrix/keyword/seo.rb +57 -0
- data/lib/sistrix/keyword/us.rb +56 -0
- data/lib/sistrix/links/linktargets.rb +57 -0
- data/lib/sistrix/links/linktexts.rb +61 -0
- data/lib/sistrix/links/list.rb +53 -0
- data/lib/sistrix/links/overview.rb +36 -0
- data/lib/sistrix/monitoring/folders.rb +53 -0
- data/lib/sistrix/monitoring/projects.rb +51 -0
- data/lib/sistrix/monitoring/report.rb +74 -0
- data/lib/sistrix/monitoring/report/download.rb +60 -0
- data/lib/sistrix/monitoring/reports.rb +52 -0
- data/lib/sistrix/record.rb +13 -0
- data/sistrix.gemspec +146 -0
- data/spec/sistrix_domain_spec.rb +685 -0
- data/spec/sistrix_keyword_spec.rb +216 -0
- data/spec/sistrix_links_spec.rb +221 -0
- data/spec/sistrix_monitoring_spec.rb +190 -0
- data/spec/spec_helper.rb +33 -0
- data/spec/xml/domain.age.xml +19 -0
- data/spec/xml/domain.competitors.sem.xml +23 -0
- data/spec/xml/domain.competitors.seo.xml +23 -0
- data/spec/xml/domain.competitors.us.xml +23 -0
- data/spec/xml/domain.kwcount.sem.xml +19 -0
- data/spec/xml/domain.kwcount.seo.xml +19 -0
- data/spec/xml/domain.overview.xml +24 -0
- data/spec/xml/domain.pagerank.xml +19 -0
- data/spec/xml/domain.pages.xml +19 -0
- data/spec/xml/domain.sichtbarkeitsindex.xml +19 -0
- data/spec/xml/domain.social.latest.xml +28 -0
- data/spec/xml/domain.social.overview.xml +21 -0
- data/spec/xml/domain.social.top.xml +28 -0
- data/spec/xml/domain.social.url.xml +19 -0
- data/spec/xml/domain.social.url_with_history.xml +23 -0
- data/spec/xml/domain.xml +29 -0
- data/spec/xml/keyword.domain.sem.xml +24 -0
- data/spec/xml/keyword.domain.seo.xml +24 -0
- data/spec/xml/keyword.domain.us.xml +24 -0
- data/spec/xml/keyword.sem.xml +22 -0
- data/spec/xml/keyword.sem_with_domain.xml +212 -0
- data/spec/xml/keyword.sem_with_domain2.xml +20 -0
- data/spec/xml/keyword.seo.xml +29 -0
- data/spec/xml/keyword.seo_with_url.xml +20 -0
- data/spec/xml/keyword.us.xml +28 -0
- data/spec/xml/keyword.us_nodate.xml +19 -0
- data/spec/xml/keyword.xml +21 -0
- data/spec/xml/links.linktargets.xml +118 -0
- data/spec/xml/links.linktexts.xml +28 -0
- data/spec/xml/links.list.xml +10018 -0
- data/spec/xml/links.overview.xml +23 -0
- data/spec/xml/monitoring.folders.xml +20 -0
- data/spec/xml/monitoring.projects.xml +37 -0
- data/spec/xml/monitoring.report.download.pdf +0 -0
- data/spec/xml/monitoring.report.download_error.xml +18 -0
- data/spec/xml/monitoring.report.xml +181 -0
- data/spec/xml/monitoring.reports.xml +19 -0
- data/test/helper.rb +18 -0
- data/test/test_sistrix.rb +7 -0
- metadata +232 -0
data/spec/spec_helper.rb
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# This file is copied to spec/ when you run 'rails generate rspec:install'
|
|
2
|
+
require 'rspec'
|
|
3
|
+
require 'webmock/rspec'
|
|
4
|
+
|
|
5
|
+
spec_root = File.dirname(__FILE__)
|
|
6
|
+
|
|
7
|
+
# Requires supporting ruby files with custom matchers and macros, etc,
|
|
8
|
+
# in spec/support/ and its subdirectories.
|
|
9
|
+
Dir[spec_root + "/support/**/*.rb"].each {|f| require f}
|
|
10
|
+
|
|
11
|
+
RSpec.configure do |config|
|
|
12
|
+
# ## Mock Framework
|
|
13
|
+
#
|
|
14
|
+
# If you prefer to use mocha, flexmock or RR, uncomment the appropriate line:
|
|
15
|
+
#
|
|
16
|
+
# config.mock_with :mocha
|
|
17
|
+
# config.mock_with :flexmock
|
|
18
|
+
# config.mock_with :rr
|
|
19
|
+
|
|
20
|
+
# Remove this line if you're not using ActiveRecord or ActiveRecord fixtures
|
|
21
|
+
# config.fixture_path = "#{spec_root}/spec/fixtures"
|
|
22
|
+
|
|
23
|
+
# If you're not using ActiveRecord, or you'd prefer not to run each of your
|
|
24
|
+
# examples within a transaction, remove the following line or assign false
|
|
25
|
+
# instead of true.
|
|
26
|
+
# config.use_transactional_fixtures = true
|
|
27
|
+
|
|
28
|
+
# If true, the base class of anonymous controllers will be inferred
|
|
29
|
+
# automatically. This will be the default behavior in future versions of
|
|
30
|
+
# rspec-rails.
|
|
31
|
+
# config.infer_base_class_for_anonymous_controllers = false
|
|
32
|
+
end
|
|
33
|
+
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
HTTP/1.1 200 OK
|
|
2
|
+
Date: Wed, 11 Apr 2012 13:47:40 GMT
|
|
3
|
+
Server: Apache
|
|
4
|
+
X-Robots-Tag: noarchive
|
|
5
|
+
X-Answer: 42
|
|
6
|
+
Vary: Accept-Encoding
|
|
7
|
+
Content-Length: 212
|
|
8
|
+
Connection: close
|
|
9
|
+
Content-Type: text/xml; charset=utf-8
|
|
10
|
+
|
|
11
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
12
|
+
<response>
|
|
13
|
+
<api_key/>
|
|
14
|
+
<method>domain.age</method>
|
|
15
|
+
<answer>
|
|
16
|
+
<age domain="zeit.de" value="1998-02-13T00:00:00+01:00"/>
|
|
17
|
+
</answer>
|
|
18
|
+
<credits used="1"/>
|
|
19
|
+
</response>
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
HTTP/1.1 200 OK
|
|
2
|
+
Date: Wed, 11 Apr 2012 14:04:43 GMT
|
|
3
|
+
Server: Apache
|
|
4
|
+
X-Robots-Tag: noarchive
|
|
5
|
+
X-Answer: 42
|
|
6
|
+
Vary: Accept-Encoding
|
|
7
|
+
Content-Length: 393
|
|
8
|
+
Connection: close
|
|
9
|
+
Content-Type: text/xml; charset=utf-8
|
|
10
|
+
|
|
11
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
12
|
+
<response>
|
|
13
|
+
<api_key/>
|
|
14
|
+
<method>domain.competitors.sem</method>
|
|
15
|
+
<answer>
|
|
16
|
+
<result domain="stepstone.de" match="100"/>
|
|
17
|
+
<result domain="jobscout24.de" match="49"/>
|
|
18
|
+
<result domain="monster.de" match="48"/>
|
|
19
|
+
<result domain="caritas.de" match="37"/>
|
|
20
|
+
<result domain="fazjob.net" match="29"/>
|
|
21
|
+
</answer>
|
|
22
|
+
<credits used="5"/>
|
|
23
|
+
</response>
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
HTTP/1.1 200 OK
|
|
2
|
+
Date: Wed, 11 Apr 2012 14:04:35 GMT
|
|
3
|
+
Server: Apache
|
|
4
|
+
X-Robots-Tag: noarchive
|
|
5
|
+
X-Answer: 42
|
|
6
|
+
Vary: Accept-Encoding
|
|
7
|
+
Content-Length: 384
|
|
8
|
+
Connection: close
|
|
9
|
+
Content-Type: text/xml; charset=utf-8
|
|
10
|
+
|
|
11
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
12
|
+
<response>
|
|
13
|
+
<api_key/>
|
|
14
|
+
<method>domain.competitors.seo</method>
|
|
15
|
+
<answer>
|
|
16
|
+
<result domain="facebook.com" match="100"/>
|
|
17
|
+
<result domain="amazon.de" match="87"/>
|
|
18
|
+
<result domain="spiegel.de" match="54"/>
|
|
19
|
+
<result domain="focus.de" match="50"/>
|
|
20
|
+
<result domain="welt.de" match="38"/>
|
|
21
|
+
</answer>
|
|
22
|
+
<credits used="5"/>
|
|
23
|
+
</response>
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
HTTP/1.1 200 OK
|
|
2
|
+
Date: Wed, 11 Apr 2012 13:59:12 GMT
|
|
3
|
+
Server: Apache
|
|
4
|
+
X-Robots-Tag: noarchive
|
|
5
|
+
X-Answer: 42
|
|
6
|
+
Vary: Accept-Encoding
|
|
7
|
+
Content-Length: 383
|
|
8
|
+
Connection: close
|
|
9
|
+
Content-Type: text/xml; charset=utf-8
|
|
10
|
+
|
|
11
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
12
|
+
<response>
|
|
13
|
+
<api_key/>
|
|
14
|
+
<method>domain.competitors.us</method>
|
|
15
|
+
<answer>
|
|
16
|
+
<result domain="youtube.com" match="100"/>
|
|
17
|
+
<result domain="wikimedia.org" match="65"/>
|
|
18
|
+
<result domain="focus.de" match="43"/>
|
|
19
|
+
<result domain="welt.de" match="19"/>
|
|
20
|
+
<result domain="bild.de" match="18"/>
|
|
21
|
+
</answer>
|
|
22
|
+
<credits used="5"/>
|
|
23
|
+
</response>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
HTTP/1.1 200 OK
|
|
2
|
+
Date: Wed, 11 Apr 2012 13:51:15 GMT
|
|
3
|
+
Server: Apache
|
|
4
|
+
X-Robots-Tag: noarchive
|
|
5
|
+
X-Answer: 42
|
|
6
|
+
Vary: Accept-Encoding
|
|
7
|
+
Content-Length: 238
|
|
8
|
+
Connection: close
|
|
9
|
+
Content-Type: text/xml; charset=utf-8
|
|
10
|
+
|
|
11
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
12
|
+
<response>
|
|
13
|
+
<api_key/>
|
|
14
|
+
<method>domain.kwcount.sem</method>
|
|
15
|
+
<answer>
|
|
16
|
+
<kwcount.sem domain="zeit.de" date="2012-04-09T00:00:00+02:00" value="15"/>
|
|
17
|
+
</answer>
|
|
18
|
+
<credits used="1"/>
|
|
19
|
+
</response>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
HTTP/1.1 200 OK
|
|
2
|
+
Date: Wed, 11 Apr 2012 13:51:22 GMT
|
|
3
|
+
Server: Apache
|
|
4
|
+
X-Robots-Tag: noarchive
|
|
5
|
+
X-Answer: 42
|
|
6
|
+
Vary: Accept-Encoding
|
|
7
|
+
Content-Length: 241
|
|
8
|
+
Connection: close
|
|
9
|
+
Content-Type: text/xml; charset=utf-8
|
|
10
|
+
|
|
11
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
12
|
+
<response>
|
|
13
|
+
<api_key/>
|
|
14
|
+
<method>domain.kwcount.seo</method>
|
|
15
|
+
<answer>
|
|
16
|
+
<kwcount.seo domain="zeit.de" date="2012-04-09T00:00:00+02:00" value="85893"/>
|
|
17
|
+
</answer>
|
|
18
|
+
<credits used="1"/>
|
|
19
|
+
</response>
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
HTTP/1.1 200 OK
|
|
2
|
+
Date: Wed, 11 Apr 2012 13:11:27 GMT
|
|
3
|
+
Server: Apache
|
|
4
|
+
X-Robots-Tag: noarchive
|
|
5
|
+
X-Answer: 42
|
|
6
|
+
Vary: Accept-Encoding
|
|
7
|
+
Content-Length: 628
|
|
8
|
+
Connection: close
|
|
9
|
+
Content-Type: text/xml; charset=utf-8
|
|
10
|
+
|
|
11
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
12
|
+
<response>
|
|
13
|
+
<api_key/>
|
|
14
|
+
<method>domain.overview</method>
|
|
15
|
+
<answer>
|
|
16
|
+
<sichtbarkeitsindex domain="zeit.de" date="2012-04-09T00:00:00+02:00" value="108.6181"/>
|
|
17
|
+
<pagerank domain="zeit.de" date="2009-04-11T00:00:00+02:00" value="8"/>
|
|
18
|
+
<pages domain="zeit.de" date="2012-04-11T00:00:00+02:00" value="3710000"/>
|
|
19
|
+
<age domain="zeit.de" value="1998-02-13T00:00:00+01:00"/>
|
|
20
|
+
<kwcount.seo domain="zeit.de" date="2012-04-09T00:00:00+02:00" value="85893"/>
|
|
21
|
+
<kwcount.sem domain="zeit.de" date="2012-04-09T00:00:00+02:00" value="15"/>
|
|
22
|
+
</answer>
|
|
23
|
+
<credits used="6"/>
|
|
24
|
+
</response>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
HTTP/1.1 200 OK
|
|
2
|
+
Date: Wed, 11 Apr 2012 13:36:46 GMT
|
|
3
|
+
Server: Apache
|
|
4
|
+
X-Robots-Tag: noarchive
|
|
5
|
+
X-Answer: 42
|
|
6
|
+
Vary: Accept-Encoding
|
|
7
|
+
Content-Length: 231
|
|
8
|
+
Connection: close
|
|
9
|
+
Content-Type: text/xml; charset=utf-8
|
|
10
|
+
|
|
11
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
12
|
+
<response>
|
|
13
|
+
<api_key/>
|
|
14
|
+
<method>domain.pagerank</method>
|
|
15
|
+
<answer>
|
|
16
|
+
<pagerank domain="zeit.de" date="2009-04-11T00:00:00+02:00" value="8"/>
|
|
17
|
+
</answer>
|
|
18
|
+
<credits used="1"/>
|
|
19
|
+
</response>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
HTTP/1.1 200 OK
|
|
2
|
+
Date: Wed, 11 Apr 2012 13:07:17 GMT
|
|
3
|
+
Server: Apache
|
|
4
|
+
X-Robots-Tag: noarchive
|
|
5
|
+
X-Answer: 42
|
|
6
|
+
Vary: Accept-Encoding
|
|
7
|
+
Content-Length: 231
|
|
8
|
+
Connection: close
|
|
9
|
+
Content-Type: text/xml; charset=utf-8
|
|
10
|
+
|
|
11
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
12
|
+
<response>
|
|
13
|
+
<api_key/>
|
|
14
|
+
<method>domain.pages</method>
|
|
15
|
+
<answer>
|
|
16
|
+
<pages domain="zeit.de" date="2012-04-11T00:00:00+02:00" value="3710000"/>
|
|
17
|
+
</answer>
|
|
18
|
+
<credits used="1"/>
|
|
19
|
+
</response>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
HTTP/1.1 200 OK
|
|
2
|
+
Date: Wed, 11 Apr 2012 14:15:30 GMT
|
|
3
|
+
Server: Apache
|
|
4
|
+
X-Robots-Tag: noarchive
|
|
5
|
+
X-Answer: 42
|
|
6
|
+
Vary: Accept-Encoding
|
|
7
|
+
Content-Length: 258
|
|
8
|
+
Connection: close
|
|
9
|
+
Content-Type: text/xml; charset=utf-8
|
|
10
|
+
|
|
11
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
12
|
+
<response>
|
|
13
|
+
<api_key/>
|
|
14
|
+
<method>domain.sichtbarkeitsindex</method>
|
|
15
|
+
<answer>
|
|
16
|
+
<sichtbarkeitsindex domain="zeit.de" date="2012-04-09T00:00:00+02:00" value="108.6181"/>
|
|
17
|
+
</answer>
|
|
18
|
+
<credits used="1"/>
|
|
19
|
+
</response>
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
HTTP/1.1 200 OK
|
|
2
|
+
Date: Wed, 11 Apr 2012 14:45:38 GMT
|
|
3
|
+
Server: Apache
|
|
4
|
+
X-Robots-Tag: noarchive
|
|
5
|
+
X-Answer: 42
|
|
6
|
+
Vary: Accept-Encoding
|
|
7
|
+
Content-Length: 1424
|
|
8
|
+
Connection: close
|
|
9
|
+
Content-Type: text/xml; charset=utf-8
|
|
10
|
+
|
|
11
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
12
|
+
<response>
|
|
13
|
+
<api_key/>
|
|
14
|
+
<method>domain.social.latest</method>
|
|
15
|
+
<answer>
|
|
16
|
+
<url network="total" url="http://www.zeit.de/2011/38/P-Fahrrad" date="2012-04-10T14:29:42+02:00"/>
|
|
17
|
+
<url network="total" url="http://www.zeit.de/politik/2012-04/grass-gedicht-israel-debatte" date="2012-04-10T15:51:23+02:00"/>
|
|
18
|
+
<url network="total" url="http://www.zeit.de/lebensart/2012-04/fs-baumeister-der-revolution-5" date="2012-04-10T15:49:53+02:00"/>
|
|
19
|
+
<url network="total" url="http://www.zeit.de/kultur/film/2012-04/work-hard-film" date="2012-04-10T19:57:55+02:00"/>
|
|
20
|
+
<url network="total" url="http://www.zeit.de/politik/ausland/2012-04/aegypten-verfassungsgremium-urteil" date="2012-04-10T15:03:41+02:00"/>
|
|
21
|
+
<url network="total" url="http://www.zeit.de/kultur/2010-05/fs-baku" date="2012-04-09T14:41:21+02:00"/>
|
|
22
|
+
<url network="total" url="http://www.zeit.de/2012/15/DOS-Rabbiner" date="2012-04-09T08:42:11+02:00"/>
|
|
23
|
+
<url network="total" url="http://www.zeit.de/lebensart/essen-trinken/2011-04/vorab-baeuerlein-tiere-essen-buch" date="2012-04-09T23:29:27+02:00"/>
|
|
24
|
+
<url network="total" url="http://www.zeit.de/gesellschaft/schule/2011-04/schule-hirnforschung" date="2012-04-09T08:57:24+02:00"/>
|
|
25
|
+
<url network="total" url="http://www.zeit.de/politik/ausland/2012-04/syrien-tuerkei-soldaten" date="2012-04-09T13:32:29+02:00"/>
|
|
26
|
+
</answer>
|
|
27
|
+
<credits used="10"/>
|
|
28
|
+
</response>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
HTTP/1.1 200 OK
|
|
2
|
+
Date: Wed, 11 Apr 2012 14:24:36 GMT
|
|
3
|
+
Server: Apache
|
|
4
|
+
X-Robots-Tag: noarchive
|
|
5
|
+
X-Answer: 42
|
|
6
|
+
Vary: Accept-Encoding
|
|
7
|
+
Content-Length: 304
|
|
8
|
+
Connection: close
|
|
9
|
+
Content-Type: text/xml; charset=utf-8
|
|
10
|
+
|
|
11
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
12
|
+
<response>
|
|
13
|
+
<api_key/>
|
|
14
|
+
<method>domain.social.overview</method>
|
|
15
|
+
<answer>
|
|
16
|
+
<votes network="twitter" value="557071"/>
|
|
17
|
+
<votes network="facebook" value="1335512"/>
|
|
18
|
+
<votes network="googleplus" value="27531"/>
|
|
19
|
+
</answer>
|
|
20
|
+
<credits used="3"/>
|
|
21
|
+
</response>
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
HTTP/1.1 200 OK
|
|
2
|
+
Date: Wed, 11 Apr 2012 14:36:32 GMT
|
|
3
|
+
Server: Apache
|
|
4
|
+
X-Robots-Tag: noarchive
|
|
5
|
+
X-Answer: 42
|
|
6
|
+
Vary: Accept-Encoding
|
|
7
|
+
Content-Length: 1089
|
|
8
|
+
Connection: close
|
|
9
|
+
Content-Type: text/xml; charset=utf-8
|
|
10
|
+
|
|
11
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
12
|
+
<response>
|
|
13
|
+
<api_key/>
|
|
14
|
+
<method>domain.social.top</method>
|
|
15
|
+
<answer>
|
|
16
|
+
<url network="total" url="http://www.zeit.de/datenschutz/malte-spitz-vorratsdaten" votes="109822"/>
|
|
17
|
+
<url network="total" url="http://www.zeit.de/2011/22/DOS-G8" votes="82933"/>
|
|
18
|
+
<url network="total" url="http://www.zeit.de/datenschutz/malte-spitz-data-retention" votes="36029"/>
|
|
19
|
+
<url network="total" url="http://www.zeit.de/datenschutz/malte-spitz-vorratsdaten/" votes="28329"/>
|
|
20
|
+
<url network="total" url="http://www.zeit.de/digital/datenschutz/2011-02/vorratsdaten-malte-spitz" votes="27509"/>
|
|
21
|
+
<url network="total" url="http://www.zeit.de/2003/48/Gorleben" votes="23339"/>
|
|
22
|
+
<url network="total" url="http://www.zeit.de/news/index" votes="14375"/>
|
|
23
|
+
<url network="total" url="http://www.zeit.de/index" votes="13369"/>
|
|
24
|
+
<url network="total" url="http://www.zeit.de/2011/22/DOS-G8/komplettansicht" votes="10934"/>
|
|
25
|
+
<url network="total" url="http://www.zeit.de/2011/22/DOS-G8/seite-1" votes="10189"/>
|
|
26
|
+
</answer>
|
|
27
|
+
<credits used="10"/>
|
|
28
|
+
</response>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
HTTP/1.1 200 OK
|
|
2
|
+
Date: Wed, 11 Apr 2012 15:06:58 GMT
|
|
3
|
+
Server: Apache
|
|
4
|
+
X-Robots-Tag: noarchive
|
|
5
|
+
X-Answer: 42
|
|
6
|
+
Vary: Accept-Encoding
|
|
7
|
+
Content-Length: 271
|
|
8
|
+
Connection: close
|
|
9
|
+
Content-Type: text/xml; charset=utf-8
|
|
10
|
+
|
|
11
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
12
|
+
<response>
|
|
13
|
+
<api_key/>
|
|
14
|
+
<method>domain.social.url</method>
|
|
15
|
+
<answer>
|
|
16
|
+
<current url="http://www.zeit.de/2011/38/P-Fahrrad" total="408" facebook="260" twitter="144" googleplus="4"/>
|
|
17
|
+
</answer>
|
|
18
|
+
<credits used="1"/>
|
|
19
|
+
</response>
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
HTTP/1.1 200 OK
|
|
2
|
+
Date: Wed, 11 Apr 2012 14:56:27 GMT
|
|
3
|
+
Server: Apache
|
|
4
|
+
X-Robots-Tag: noarchive
|
|
5
|
+
X-Answer: 42
|
|
6
|
+
Vary: Accept-Encoding
|
|
7
|
+
Content-Length: 514
|
|
8
|
+
Connection: close
|
|
9
|
+
Content-Type: text/xml; charset=utf-8
|
|
10
|
+
|
|
11
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
12
|
+
<response>
|
|
13
|
+
<api_key/>
|
|
14
|
+
<method>domain.social.url</method>
|
|
15
|
+
<answer>
|
|
16
|
+
<current url="http://www.zeit.de/2011/38/P-Fahrrad" total="408" facebook="260" twitter="144" googleplus="4"/>
|
|
17
|
+
<timeline>
|
|
18
|
+
<history date="2012-04-11T16:56:19+02:00" total="408" facebook="260" twitter="144" googleplus="4"/>
|
|
19
|
+
<history date="2012-04-10T15:05:41+02:00" total="408" facebook="260" twitter="144" googleplus="4"/>
|
|
20
|
+
</timeline>
|
|
21
|
+
</answer>
|
|
22
|
+
<credits used="3"/>
|
|
23
|
+
</response>
|
data/spec/xml/domain.xml
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
HTTP/1.1 200 OK
|
|
2
|
+
Date: Wed, 11 Apr 2012 12:28:42 GMT
|
|
3
|
+
Server: Apache
|
|
4
|
+
X-Robots-Tag: noarchive
|
|
5
|
+
X-Answer: 42
|
|
6
|
+
Vary: Accept-Encoding
|
|
7
|
+
Content-Length: 1916
|
|
8
|
+
Connection: close
|
|
9
|
+
Content-Type: text/xml; charset=utf-8
|
|
10
|
+
|
|
11
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
12
|
+
<response>
|
|
13
|
+
<api_key/>
|
|
14
|
+
<method>domain</method>
|
|
15
|
+
<answer>
|
|
16
|
+
<option method="domain.sichtbarkeitsindex" url="http://api.sistrix.net/domain.sichtbarkeitsindex?api_key=&domain=sistrix.de" name="SISTRIX Sichtbarkeitsindex"/>
|
|
17
|
+
<option method="domain.overview" url="http://api.sistrix.net/domain.overview?api_key=&domain=sistrix.de" name="Ueberblick ueber aktuelle Daten zu der Domain"/>
|
|
18
|
+
<option method="domain.pagerank" url="http://api.sistrix.net/domain.pagerank?api_key=&domain=sistrix.de" name="Google PageRank"/>
|
|
19
|
+
<option method="domain.pages" url="http://api.sistrix.net/domain.pages?api_key=&domain=sistrix.de" name="Anzahl indexierter Seiten"/>
|
|
20
|
+
<option method="domain.age" url="http://api.sistrix.net/domain.age?api_key=&domain=sistrix.de" name="Alter der Domain"/>
|
|
21
|
+
<option method="domain.kwcount.seo" url="http://api.sistrix.net/domain.kwcount.seo?api_key=&domain=sistrix.de" name="Anzahl gefundener Keywords (SEO)"/>
|
|
22
|
+
<option method="domain.kwcount.sem" url="http://api.sistrix.net/domain.kwcount.sem?api_key=&domain=sistrix.de" name="Anzahl gefundener Keywords (SEM)"/>
|
|
23
|
+
<option method="domain.social.overview" url="http://api.sistrix.net/domain.social.overview?api_key=&domain=sistrix.de" name="Social-Mediadaten zur Domain"/>
|
|
24
|
+
<option method="domain.social.url" url="http://api.sistrix.net/domain.social.url?api_key=&domain=sistrix.deurl=history=true" name="Social-Mediadaten zur Domain"/>
|
|
25
|
+
<option method="domain.social.top" url="http://api.sistrix.net/domain.social.top?api_key=&domain=sistrix.de&network=&num=100" name="Social-Mediadaten zur Domain"/>
|
|
26
|
+
<option method="domain.social.latest" url="http://api.sistrix.net/domain.social.latest?api_key=&domain=sistrix.de&network=&num=100" name="Social-Mediadaten zur Domain"/>
|
|
27
|
+
</answer>
|
|
28
|
+
<credits used="0"/>
|
|
29
|
+
</response>
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
HTTP/1.1 200 OK
|
|
2
|
+
Date: Thu, 12 Apr 2012 10:15:26 GMT
|
|
3
|
+
Server: Apache
|
|
4
|
+
X-Robots-Tag: noarchive
|
|
5
|
+
X-Answer: 42
|
|
6
|
+
Vary: Accept-Encoding
|
|
7
|
+
Content-Length: 558
|
|
8
|
+
Connection: close
|
|
9
|
+
Content-Type: text/xml; charset=utf-8
|
|
10
|
+
|
|
11
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
12
|
+
<response>
|
|
13
|
+
<api_key/>
|
|
14
|
+
<method>keyword.domain.sem</method>
|
|
15
|
+
<answer>
|
|
16
|
+
<result kw="gebrauchtwagen" position="1" competition="93" traffic="100"/>
|
|
17
|
+
<result kw="autos" position="1" competition="100" traffic="100"/>
|
|
18
|
+
<result kw="wohnwagen" position="1" competition="88" traffic="100"/>
|
|
19
|
+
<result kw="pkw" position="1" competition="85" traffic="100"/>
|
|
20
|
+
<result kw="traktor" position="1" competition="85" traffic="100"/>
|
|
21
|
+
</answer>
|
|
22
|
+
<date>2012-04-09T00:00:00+02:00</date>
|
|
23
|
+
<credits used="5"/>
|
|
24
|
+
</response>
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
HTTP/1.1 200 OK
|
|
2
|
+
Date: Thu, 12 Apr 2012 10:02:15 GMT
|
|
3
|
+
Server: Apache
|
|
4
|
+
X-Robots-Tag: noarchive
|
|
5
|
+
X-Answer: 42
|
|
6
|
+
Vary: Accept-Encoding
|
|
7
|
+
Content-Length: 809
|
|
8
|
+
Connection: close
|
|
9
|
+
Content-Type: text/xml; charset=utf-8
|
|
10
|
+
|
|
11
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
12
|
+
<response>
|
|
13
|
+
<api_key/>
|
|
14
|
+
<method>keyword.domain.seo</method>
|
|
15
|
+
<answer>
|
|
16
|
+
<result kw="mobile" position="1" competition="67" traffic="70" url="http://suchen.mobile.de/fahrzeuge/auto/"/>
|
|
17
|
+
<result kw="mobil" position="1" competition="78" traffic="30" url="http://www.mobile.de/?lang=en"/>
|
|
18
|
+
<result kw="suzuki samurai" position="1" competition="70" traffic="15" url="http://suchen.mobile.de/fahrzeuge/showDetails.html?id=157082385"/>
|
|
19
|
+
<result kw="autohandel" position="1" competition="73" traffic="30" url="http://home.mobile.de/"/>
|
|
20
|
+
<result kw="honda dax" position="1" competition="69" traffic="25" url="http://suchen.mobile.de/fahrzeuge/showDetails.html?id=138897397"/>
|
|
21
|
+
</answer>
|
|
22
|
+
<date>2012-04-09T00:00:00+02:00</date>
|
|
23
|
+
<credits used="5"/>
|
|
24
|
+
</response>
|