Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
d6d2066
req handler update
shahiq572 Aug 16, 2018
8b03342
.vscode deleted
OwaisIbrahim Aug 17, 2018
e9d9b90
.gitignore and package.json updated
OwaisIbrahim Aug 17, 2018
f6866e9
conflicts resolved
OwaisIbrahim Aug 17, 2018
fbd1351
files added
OwaisIbrahim Aug 17, 2018
6ea307e
Redundant code deleted
OwaisIbrahim Aug 17, 2018
63a61c9
Input output format file added
OwaisIbrahim Aug 17, 2018
254cf51
Update README.md
OwaisIbrahim Aug 17, 2018
2758792
build folder deleted
OwaisIbrahim Aug 17, 2018
98472c5
Merge branch 'master' of https://github.com/OwaisIbrahim/social-searcher
OwaisIbrahim Aug 17, 2018
b5c76cd
Consumer end result modified (extras param added to all)
OwaisIbrahim Aug 17, 2018
86b9b47
build folder deleted
OwaisIbrahim Aug 17, 2018
8f1acfe
Merge conflicts resolved
OwaisIbrahim Aug 20, 2018
7cccc00
updated .gitignore with youtube secret
shahiq572 Aug 26, 2018
43c00ad
SMPfactory class converted to static
shahiq572 Aug 26, 2018
795526b
Merge pull request #1 from shahiq572/Static-SMPfactory-class-improvement
shahiq572 Aug 26, 2018
0a760e0
String Constructor at Vimeo is Removed
OwaisIbrahim Sep 6, 2018
b289d4a
Final code.
OwaisIbrahim Oct 12, 2018
18e7c76
some error handeling code added
OwaisIbrahim Oct 16, 2018
22d1f4a
Procfile added
OwaisIbrahim Oct 16, 2018
3a29004
Youtube resolved and credentials added
OwaisIbrahim Oct 16, 2018
331431a
Some Errors Resolved
OwaisIbrahim Oct 20, 2018
1e17874
npm start at package.json updated
OwaisIbrahim Oct 21, 2018
97ee2c7
node replaced with pm2 start
OwaisIbrahim Oct 21, 2018
b2924ad
files updated
OwaisIbrahim Oct 21, 2018
783b213
API DATA return type change from string to json
OwaisIbrahim Oct 26, 2018
7467435
Revert "Static sm pfactory class improvement"
shahiq572 Nov 1, 2018
4f952ac
Merge pull request #3 from shahiq572/revert-1-Static-SMPfactory-class…
shahiq572 Nov 1, 2018
a653905
Merge pull request #2 from OwaisIbrahim/master
shahiq572 Nov 1, 2018
fde893c
Added SearchByTrends to Youtube
shahiq572 Nov 2, 2018
a3555a3
Merge pull request #2 from shahiq572/master
OwaisIbrahim Nov 3, 2018
767eb1f
Twitter trends added
OwaisIbrahim Nov 3, 2018
7d4219d
Twitter and Youtube Node Sentiment added
OwaisIbrahim Nov 30, 2018
50147d9
Twitter sentiment error resolved
OwaisIbrahim Nov 30, 2018
88f34a7
Sentiment range updated
OwaisIbrahim Dec 12, 2018
8e50345
Sentiment reset to neutral at 0
OwaisIbrahim Dec 12, 2018
feece6b
Trends endpoint added
shahiq572 May 1, 2019
f746a77
Merge branch 'master' into master
shahiq572 May 1, 2019
9105486
Merge pull request #3 from shahiq572/master
OwaisIbrahim Jun 4, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .credentials/youtube-nodejs-quickstart.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@

{"access_token":"ya29.Glv0BRXg8QpD84mZHni5spxnmSohxXUA7JGy7qoLx9lnMVoyXhFnZnR_mN4_kEQIEWSj-srlak3waGqpt5O5ZzwtpXlyE4mfwNoAA9-GkhoGDWNBLkDrV2aNmnHs","token_type":"Bearer","refresh_token":"1/aKtIH81DScawbzofx5-IbPyiV2ozO-p0F2EQ9mo16vSrbtTQo0gKXXSER_4Du_mh","scope":"https://www.googleapis.com/auth/youtube.readonly","expiry_date":1533789609784}
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
build
build/
.history
*.js
README.md
client_secret.json

# Logs
logs
Expand Down
8 changes: 0 additions & 8 deletions Consumer_Sample_Post_Request.txt

This file was deleted.

24 changes: 24 additions & 0 deletions Author_Sample_Post_Request → Input_and_output_format.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// Author Post Request
//http://localhost:4000/search
{
"tag":"author",
"smpList": [
Expand Down Expand Up @@ -54,3 +56,25 @@
}
]
}

//Consumer Post Request
// http://localhost:4000/socialsearch
{
"smpList": [ "dailymotion", "twitter", "flickr", "youtube", "vimeo", "googleplus", "tumblr"],
"params": {
"query":"imran khan",
"maxResults":2
}
}

//RESULT FORMAT - For Consumer
{
query:"IK",
timeTaken:date/time,
resultList:[ {name:"youtube"
results:[{ title:"", user:"" , url:"", views:"", likes:"", desc:"", time:"" }, ... ] },

{ name:"twitter"
results:[{ title:"", user:"" , url:"", views:"", likes:"", desc:"", time:"" }, ... ] }
]
}
1 change: 1 addition & 0 deletions Procfile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
worker: node ./build/index.js
21 changes: 0 additions & 21 deletions README.md

This file was deleted.

Loading