1.0.8 • Published 7 years ago

hurriyet-js v1.0.8

Weekly downloads
6
License
ISC
Repository
github
Last release
7 years ago

hurriyet-js

Initializing the API

  1. Install the package;

    npm install --save hurriyet-js
  2. Initialize hurriyet-js

    var hurriyet = require("hurrriyet-js")
    
    var api = hurriyet("API-KEY-HERE");
  3. For Articles

    api.articles(function(res){
    
        console.log(res);
    
    });
  4. For Single Article

    api.article('40322757',function(res){
    
        console.log(res);
    
    });
  5. For Columns

    api.columns(function(res){
    
        console.log(res);
    
    });
  6. For Single Column

    api.column('40321556',function(res){
    
        console.log(res);
    
    });
  7. For Search

    api.search('hackathon',function(res){
    
        console.log(res);
    
    });

Articles Defaults Fields

 1. Id
 2. ContentType
 3. CreatedDate
 4. Title
 5. Description
 6. Text
 7. Editor
 8. Files
 9. Path
 10. RelatedNews
 11. Tags
 12. Url
 13. Writers

Columns Defaults Fields

 1. Id
 2. ContentType
 3. Fullname
 4. Title
 5. Description
 6. Text
 7. Files
 8. Path
 9. Url

Search Defaults Fields

 1. Id
 2. ContentType
 3. ModifiedDate
 4. Title
 5. Description
 6. Text
 7. Files
 8. Path
 9. RelatedNews
 10. Tags
 11. Url
 12. Writers

NOTE : Some text value have html tags. If you dont want html tags then use StripedText field from return values.

NOTE : If you want select different field,skip or top parameters, send options parameters to single methods:

    api.article('40322757',{skip:20,top:40,columns['Id','Title']},function(res){

        console.log(res);

    });

For Api Key and Api Documents : https://developers.hurriyet.com.tr/

Developed by aguleroglu

1.0.8

7 years ago

1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago