How to filter Facebook post comments by time range - facebook

Is there anyway to filter comments between a time range?
It looks like this was removed in a previous bug update, but I cannot be sure: https://developers.facebook.com/bugs/420363721670492/
Basically, I want to grab all comments for a post (which I am now doing), but then I want to filter those comments between a date range. Any way to do this? It seems like since and until no longer works when testing in the api explorer.

When using the unix timestamp, there should be no quotes, it is not a time format string.
Change your call to:
GET/V2.12/XXXX_XXXX?fields=comments&since=1516406400

Related

Delete data after a period of time Using Firebase

I am trying to implement a method where a post(s) will be deleted after a given time frame. In my case 10 weeks.
How would I go about implementing a feature? I've read that Firebase does not support server-sided scripting. So how could I go about it? When users uploads a post, I do have a timestamp node attached. Is it a case of comparing the post's timestamp to a timestamp of 10 weeks? And then removing the post? Or is there another, more efficient way to achieve such a thing?
If I was to implement the aforementioned method, this would mean I'd require an observer/method to first analyse ALL posts, then do the comparison and then execute the second phase, depending on the timestamp - removeValue or simply return. And I wouldn't I need to use NotificatonCenter so I can call this code throughout my whole app?
Any input/advice would be appreciated.

MS Word - using a date variable without macros

I want to create a Word template which will:
a) prompt user for a date
b) display that date
c) calculate other dates from that date.
I'm using MS Word 2016.
I've never done anything like this in Word but after doing a bit of research I see that there are advanced options in Word which maybe I could use for that. I don't want to use macros for this as I'm thinking that if I can make this work, then I would share this template with the rest of the company and I don't want them to enable macros (we have enough security concerns without that).
I've tried to use a FILLIN field to prompt user for a date. This works, however, I would like this field to be a variable which I can reference later in the document. I haven't found a way to do that with my FILLIN field. Is it possible?
I've seen others mention DocProperties but I'm having a hard time making it work.
For example, if I go to Quick Parts -> Document Property, none of the options are for a custom date. Is there a way to add your own?
And if I go to Quick Parts -> Fields, I see Date, CreateDate, SaveDate which insert "today's date" - not what I want. Again, how do I add my own Field?
I could do this in many ways by using Excel but I wanted to see if I can make it happen with Word. I hope you guys will have an idea.

Facebook Marketing insights Grouped By Day

How is possible to get insights grouped by days?
Means get one row per day with all the statistics.
I see that I can use "hourly_stats_aggregated_by_audience_time_zone" in "breakdowns" but I dont know exactly what is the result.
I need one record each day depending from the level (for instance is I choose level=campaign) I need to have campaign_id, campaign_name, day, spent
Is is possible?
Thanks, Alex.
The parameter that I'm looking for is "time_increment" equals 1.
Here is the docs https://developers.facebook.com/docs/marketing-api/insights/v2.5
Usually, facebook insight URLs are compiled like
https://graph.facebook.com/v2.5/<object>/insights/<metric>/<period>
in your example something like
175527252532294/insights/page_impressions/day?breakdowns=/hourly_stats_aggregated_by_audience_time_zone
where <object> is your page/ad/post/app/... ID
You may try it first over here: Graph Explorer

Yahoo Weather API current conditions

I am trying to get the current weather conditions for a certain location, but for some reason I always get the conditions for a semi-random day/time (more or less past week). I am using this query: https://query.yahooapis.com/v1/public/yql?q=select%20item.condition%20from%20weather.forecast%20where%20woeid%20%3D%20639660%20AND%20u%3D%22c%22&format=json&env=store%3A%2F%2Fdatatables.org%2Falltableswithkeys&callback=
Even trying out the example query on their website doesn't work for me. When I click on "Current conditions for San Diego, CA" I get the same, random results. Is there any way to get the current conditions?
I am seeing the same thing. It has to be on Yahoo's side. Unfortunately it looks like their support page is down too. Returned a 404
I've also notice the random ( 1 day up to 2 wks) of old data being transmitted
http://xml.weather.yahoo.com/forecastrss/55364_f.xml It seems to change about every 30 seconds

Find issues as of certain date in JIRA

I am not sure if this is possible - I would like to know which issues were in which state on certain date. I tried but did not find anything. Any help would be appreciated.
EDIT: To make it clear, I would like to see status of the project e.g. a week ago, such as:
PROJECT=A AND issueType=Bug ON 2015/04/04 //something like that
Yes you can !!
Jira has advanced search feature,where you can provide different query and you can also get all bugs for one or more projects at particular data.
For more details go through
To get bugs created,resolved or updated on particular date there are custom fields created at , resolved at and updated at and then you need pass date in yyyy-mm-dd format
[Reference] http://blogs.atlassian.com/2013/01/jql-the-most-flexible-way-to-search-jira-14/