Skip to main content

Questions tagged [comments]

Questions handling comments using the API. Or, posts of Scripts / Apps / Libraries that facilitate dealing with comments on Stack Exchange sites.

Filter by
Sorted by
Tagged with
1 vote
0 answers
41 views

This userscript allows moderators to use the "convert to comment" button even if the answer has comments. It also removes the annoying confirm() prompt when converting an answer to a comment....
ThiefMaster's user avatar
1 vote
1 answer
31 views

This v1.1 URL is creating a runtime error: http://api.stackapps.com/1.1/comments&min=1323731212 Example output:
Nathan Osman's user avatar
  • 23.3k
2 votes
1 answer
63 views

The following url should return 0 comments: http://api.stackoverflow.com/1.1/comments?fromdate=9999999999 Instead it returns all comments, not actually filtering by fromdate at all. It happens on ...
Timmehmainframe's user avatar
71 votes
8 answers
2k views

About This userscript automatically converts raw Stack Exchange question URLs into the form [title](link) before submitting comments by grabbing their titles from the API. This is similar to ...
Tim Stone's user avatar
  • 4,666
55 votes
3 answers
2k views

Screenshot About This userscript adds four main features: Various utility links on posts and in the top bar Inline viewing of post revision source Markdown on the post history page Links on comment ...
Tim Stone's user avatar
  • 4,666
470 votes
57 answers
23k views

No more re-typing the same comments over and over! This script adds a little 'auto' link next to all comments boxes. When you click the link, you see a popup with 6 configurable auto-comments (canned ...
26 votes
1 answer
761 views

Question code is obsolete. But the answer code and the code linked in the comments still work. About This script adds Ctrl+B (bold), Ctrl+I (italic), Ctrl+K (code), and Ctrl+L (link) shortcuts to ...
Kip's user avatar
  • 1,021
3 votes
1 answer
103 views

In users/{id}/timeline, the detail field for comment events is formatted with Markdown and not HTML. Is it normal? I saw in the question Comments are returning markdown that the API should return HTML ...
Jilouc's user avatar
  • 355
3 votes
1 answer
85 views

I want to retrieve all comments directed to a particular user (rather than comments posted by that user) within a particular time period (e.g. last 24 hours). I don't want just "mentions", which are ...
Dan Dyer's user avatar
  • 606
30 votes
1 answer
1k views

About This user script disables the default behavior of the enter key submitting a comment. With this script installed, you must explicitly click the Add Comment button to submit your comment. Source ...
Jeff Atwood's user avatar
98 votes
6 answers
3k views

Screenshot About This user script adds a little "reply" link to each comment. Clicking this link will fetch the rest of the comments, if some of them were hidden show the "add comment&...
balpha's user avatar
  • 11k
83 votes
3 answers
2k views

History June 6, 2012: Fixed an issue that can cause major problems with chat. December 17, 2013: Fix an incompatibility with the Winter Bash code. Screenshot Before: After: About Instead of showing ...
balpha's user avatar
  • 11k
2 votes
1 answer
45 views

Running the following query: http://api.stackoverflow.com/1.1/comments Yields: { "total": 0, "page": 1, "pagesize": 30, "comments": [ ... Notice that the total entry indicates there are 0 ...
Nathan Osman's user avatar
  • 23.3k
1 vote
1 answer
102 views

The api docs: http://api.stackoverflow.com/1.0/help/method?method=posts/{id}/comments The test request. You can see comment itself here, it's four months old, while cutoff date in request is less than ...
Nikita Rybak's user avatar
  • 1,271
7 votes
1 answer
76 views

It looks like when I try to get the comments of a user that has "a huge number" of comments, I get a 500 error. Jon Skeet's comments, 500 error: http://api.stackoverflow.com/1.0/users/22656/comments ...
rascher's user avatar
  • 225
2 votes
1 answer
36 views

Something is changed on questions route called with comments= True: http://api.stackoverflow.com/1.0/questions/1940243?body=True&comments=True&pagesize=1&page=1 It does not return the ...
systempuntoout's user avatar
3 votes
2 answers
77 views

I have a query: http://api.stackoverflow.com/1.0/users/16822/comments?sort=votes This doesn't return comments with no votes, setting min to 0 doesn't work. This query includes them all, but isn't ...
Gelatin's user avatar
  • 796
3 votes
1 answer
97 views

Methods that return comments document the "body" and "comments" parameters, but they have no effect on the results, which cannot include comments and always include the body. Specific methods: /...
ColinD's user avatar
  • 369