トピックまたは通知を「Read = true」としてマークする方法

Discourse API を使用して作業しています。
私が作業しているウェブサイトは、Discourse API からすべてのデータを取得しています。しかし、トピックや通知を直接表示するのではなく、API を介してのみデータを取得しているため、トピックや通知が「既読」として登録されないという問題が発生しています。

この問題をどのように解決すればよいでしょうか?

If I’m following, you need to make an API call to this endpoint:

「いいね!」 3

Thanks for the reply.
How would this post request help me?

It will mark the posts as “viewed”, which is what you wrote in the first post.

How should the api request look like ?
something like this?
{{base_url}}/t/timings/topic_Id.json?

Please read Reverse engineer the Discourse API

「いいね!」 4

You could start with following the code back to the controller. Everything you need to know about the method is there.

「いいね!」 1

I already tried do the reverse engineering.
The only response i get from the network tab is
{{baseurl}} + /t/3295.json?track_visit=true&forceLoad=true&_=1550774445459

You gotta read it carefully.

Right clicking a request to timings and selecting copy a cURL will give you all you need for a request using the cURL syntax (the standard format for most people):

curl 'https://meta.discourse.org/topics/timings'  \
    -H 'Accept: */*' \
    -H 'Accept-Language: en-US,en;q=0.5'  \
    -H 'X-CSRF-Token: LONGTOKENHERE' \
    -H 'Content-Type: application/x-www-form-urlencoded; charset=UTF-8' \
    -H 'X-SILENCE-LOGGER: true' \
    -H 'Discourse-Logged-In: true' \
    -H 'Discourse-Visible: true' \
    -H 'X-Requested-With: XMLHttpRequest'  \
    --data 'timings%5B3%5D=1019&timings%5B4%5D=1019&topic_time=1019&topic_id=108685' \
    --compressed
「いいね!」 6

This is what I got from the network tab


What is the the number beside the timings variable?

こんにちは、エドウィンさん。この「timings」という変数が何で、どう設定するのかはわかりましたか?私も同じ問題に直面しています。

Edwinさん、データ(timingsやtopic_time)を取得する方法、またはそれを機能させる方法を見つけましたか?私も同じ問題を抱えています。よろしくお願いします!

timings と topic_time の値について誰か説明してもらえますか?トピックに費やされた秒数ですか?