Is there a way to see the number of Facebook shares a URL has gotten over time?
up vote
-1
down vote
favorite
Is there a way to see the number of Facebook shares a URL has gotten over time? You can get share_count
for a given URL using the graph API, but it doesn't give you the number of shares over a specified time period (e.g. a specific day). Is there a way to get this information? I'm also interested in any way to get the number of "shares" over time on other social media platforms, including twitter (i.e. "retweets"). Time granularity must at least go down to the day, but a finer granularity (e.g. down to the hour) works too. Thanks in advance!
facebook facebook-graph-api
add a comment |
up vote
-1
down vote
favorite
Is there a way to see the number of Facebook shares a URL has gotten over time? You can get share_count
for a given URL using the graph API, but it doesn't give you the number of shares over a specified time period (e.g. a specific day). Is there a way to get this information? I'm also interested in any way to get the number of "shares" over time on other social media platforms, including twitter (i.e. "retweets"). Time granularity must at least go down to the day, but a finer granularity (e.g. down to the hour) works too. Thanks in advance!
facebook facebook-graph-api
did you check out the page insights api already? i know it´s possible with insights.
– luschn
Nov 12 at 8:18
Can you be more specific? I looked into it i'm not sure how to use insights since it only seems to be available given a page-id or post-id, neither of which I have in this case. I only have a URL
– Jake Burchard
Nov 13 at 3:16
it´s not possible for an url, only for pages.
– luschn
Nov 13 at 8:16
add a comment |
up vote
-1
down vote
favorite
up vote
-1
down vote
favorite
Is there a way to see the number of Facebook shares a URL has gotten over time? You can get share_count
for a given URL using the graph API, but it doesn't give you the number of shares over a specified time period (e.g. a specific day). Is there a way to get this information? I'm also interested in any way to get the number of "shares" over time on other social media platforms, including twitter (i.e. "retweets"). Time granularity must at least go down to the day, but a finer granularity (e.g. down to the hour) works too. Thanks in advance!
facebook facebook-graph-api
Is there a way to see the number of Facebook shares a URL has gotten over time? You can get share_count
for a given URL using the graph API, but it doesn't give you the number of shares over a specified time period (e.g. a specific day). Is there a way to get this information? I'm also interested in any way to get the number of "shares" over time on other social media platforms, including twitter (i.e. "retweets"). Time granularity must at least go down to the day, but a finer granularity (e.g. down to the hour) works too. Thanks in advance!
facebook facebook-graph-api
facebook facebook-graph-api
asked Nov 11 at 22:24
Jake Burchard
1,63241528
1,63241528
did you check out the page insights api already? i know it´s possible with insights.
– luschn
Nov 12 at 8:18
Can you be more specific? I looked into it i'm not sure how to use insights since it only seems to be available given a page-id or post-id, neither of which I have in this case. I only have a URL
– Jake Burchard
Nov 13 at 3:16
it´s not possible for an url, only for pages.
– luschn
Nov 13 at 8:16
add a comment |
did you check out the page insights api already? i know it´s possible with insights.
– luschn
Nov 12 at 8:18
Can you be more specific? I looked into it i'm not sure how to use insights since it only seems to be available given a page-id or post-id, neither of which I have in this case. I only have a URL
– Jake Burchard
Nov 13 at 3:16
it´s not possible for an url, only for pages.
– luschn
Nov 13 at 8:16
did you check out the page insights api already? i know it´s possible with insights.
– luschn
Nov 12 at 8:18
did you check out the page insights api already? i know it´s possible with insights.
– luschn
Nov 12 at 8:18
Can you be more specific? I looked into it i'm not sure how to use insights since it only seems to be available given a page-id or post-id, neither of which I have in this case. I only have a URL
– Jake Burchard
Nov 13 at 3:16
Can you be more specific? I looked into it i'm not sure how to use insights since it only seems to be available given a page-id or post-id, neither of which I have in this case. I only have a URL
– Jake Burchard
Nov 13 at 3:16
it´s not possible for an url, only for pages.
– luschn
Nov 13 at 8:16
it´s not possible for an url, only for pages.
– luschn
Nov 13 at 8:16
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
Even I had a similar requirement at one point of time, but I only required the number of shares made each day. If you also require only the same may be you can try this approach.
Run a cron job to fetch the number of shares and store it in database. The next day when the cron job runs, get the total shares made so far from the database and subtract it from the share_count
, like this you can get shares made each day.
Maybe there is a better way, but this was enough for my scenarios. And you can use the same logic for Twitter and other social media's as well.
Unfortunately I need this information retroactively
– Jake Burchard
Nov 13 at 3:17
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53253845%2fis-there-a-way-to-see-the-number-of-facebook-shares-a-url-has-gotten-over-time%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
Even I had a similar requirement at one point of time, but I only required the number of shares made each day. If you also require only the same may be you can try this approach.
Run a cron job to fetch the number of shares and store it in database. The next day when the cron job runs, get the total shares made so far from the database and subtract it from the share_count
, like this you can get shares made each day.
Maybe there is a better way, but this was enough for my scenarios. And you can use the same logic for Twitter and other social media's as well.
Unfortunately I need this information retroactively
– Jake Burchard
Nov 13 at 3:17
add a comment |
up vote
0
down vote
Even I had a similar requirement at one point of time, but I only required the number of shares made each day. If you also require only the same may be you can try this approach.
Run a cron job to fetch the number of shares and store it in database. The next day when the cron job runs, get the total shares made so far from the database and subtract it from the share_count
, like this you can get shares made each day.
Maybe there is a better way, but this was enough for my scenarios. And you can use the same logic for Twitter and other social media's as well.
Unfortunately I need this information retroactively
– Jake Burchard
Nov 13 at 3:17
add a comment |
up vote
0
down vote
up vote
0
down vote
Even I had a similar requirement at one point of time, but I only required the number of shares made each day. If you also require only the same may be you can try this approach.
Run a cron job to fetch the number of shares and store it in database. The next day when the cron job runs, get the total shares made so far from the database and subtract it from the share_count
, like this you can get shares made each day.
Maybe there is a better way, but this was enough for my scenarios. And you can use the same logic for Twitter and other social media's as well.
Even I had a similar requirement at one point of time, but I only required the number of shares made each day. If you also require only the same may be you can try this approach.
Run a cron job to fetch the number of shares and store it in database. The next day when the cron job runs, get the total shares made so far from the database and subtract it from the share_count
, like this you can get shares made each day.
Maybe there is a better way, but this was enough for my scenarios. And you can use the same logic for Twitter and other social media's as well.
edited Nov 12 at 5:04
answered Nov 12 at 4:31
Thanthu
26712
26712
Unfortunately I need this information retroactively
– Jake Burchard
Nov 13 at 3:17
add a comment |
Unfortunately I need this information retroactively
– Jake Burchard
Nov 13 at 3:17
Unfortunately I need this information retroactively
– Jake Burchard
Nov 13 at 3:17
Unfortunately I need this information retroactively
– Jake Burchard
Nov 13 at 3:17
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53253845%2fis-there-a-way-to-see-the-number-of-facebook-shares-a-url-has-gotten-over-time%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
did you check out the page insights api already? i know it´s possible with insights.
– luschn
Nov 12 at 8:18
Can you be more specific? I looked into it i'm not sure how to use insights since it only seems to be available given a page-id or post-id, neither of which I have in this case. I only have a URL
– Jake Burchard
Nov 13 at 3:16
it´s not possible for an url, only for pages.
– luschn
Nov 13 at 8:16