Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tweet を id から取得する関数を追加 #253

Merged
merged 4 commits into from
Sep 13, 2023
Merged

tweet を id から取得する関数を追加 #253

merged 4 commits into from
Sep 13, 2023

Conversation

rmatsuoka
Copy link
Collaborator

@rmatsuoka rmatsuoka commented Sep 12, 2023

why

saba_dsambiguator が学習の際にデータセットとして tweet を id から取得する必要があったので、その関数を追加

how

  • Twitter API の /2/tweets を叩いて id から tweet を取得。
  • この PR には、saba_disambiguator が tweet を取得するコードは含まれていない。 PR を小さくするため分割している

check

  • client_test.go で実際に API を叩くテストがある。あまり良いテストではないが、目視でデータが取得できているか確かめている。

Copy link
Collaborator Author

@rmatsuoka rmatsuoka Sep 12, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

これは散らばっていた client の関数をまとめた。
変更した箇所は getJSON でエラーメッセージにレスポンスボディを追加したこと。

@@ -93,65 +84,11 @@ func (c *Client) RecentSearch(q string) ([]*Tweet, error) {

tweets := make([]*Tweet, 0, len(resp.Data))
for _, d := range resp.Data {
// tweet オブジェクトに含まれるのは auther_id (数字の並び)のみ
Copy link
Collaborator Author

@rmatsuoka rmatsuoka Sep 12, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ここの消した部分は新しい関数 Tweets と共通化するために types.go に移動した

Copy link
Collaborator Author

@rmatsuoka rmatsuoka Sep 12, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ここは全く新しいファイルで tweet を id から取得するメソッドを定義している

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

もとは recent_test.go だったもの。TestTweets 追加にあたってファイルの名前が変わった。

Host: Host,
Path: TweetsPath,
// A space should be escaped into '%20' instead of '+' on twitter's query parameter.
RawQuery: strings.Replace(v.Encode(), "+", "%20", -1),
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

+%20 のオプションないかなと思って探したけど特になかった

@lufia
Copy link
Owner

lufia commented Sep 13, 2023

みました、マージします

@lufia lufia merged commit 10770e0 into main Sep 13, 2023
2 checks passed
@lufia lufia deleted the new-tweets branch September 13, 2023 10:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants