Byeonggi Kim

Results 11 comments of Byeonggi Kim

> amazing documentation btw 🙏 so many useful links for setting up the gmail API Thank you. I put a good deal of efforts into writing this doc. By the...

For "1. An initial call to watch() to kick it off", I will provide `refreshWatch()` method. Although Gmail API documentation says that [calling `watch()` first is necessary to be able...

You don't have to call `watch()` manually if you think your inbox receives at least one email (including spams) for seven-day-period. Every activity on Gmail would be notified to your...

`notification` is what [Gmail API sends to your server](https://developers.google.com/gmail/api/guides/push#receiving_notifications). You can see that by `console.log(req.body);`

I am having this issue on Android 10, with RNFI version of 8.3.4.

Thank you. I found cause of my issue. Fast Image couldn't get images from server because request had been sent without session cookie in request header. iOS build has no...

@dragonlong206 I haven't resolved yet. I am currently using `fallback` prop as @mdoesburg suggests while digging into solution.

> Hi dear @byeokim, what should I add to the header? > > ``` > source={{ > uri: 'https://picsum.photos/536/354', > headers: { > key: 'value', // }, > }} >...

Did you mean [renewing mailbox watch](https://developers.google.com/gmail/api/guides/push#renewing_mailbox_watch) because though `access_token` expires soon `refresh_token` can be used instead as long as you want unless [some expiration conditions](https://developers.google.com/identity/protocols/oauth2#expiration) are met? If that's the...

I don't have ideas why you are not getting notifications. But looking into your code I found that my suggestion was flawed. Instead of setting up `node-schedule` only when email...