<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Error receiving push notifications in Discussion Forum</title>
    <link>https://community.sinch.com/t5/Discussion-Forum/Error-receiving-push-notifications/m-p/16086#M721</link>
    <description>&lt;P&gt;Hi descoba,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Recently FCM was updated to use OAuth2 security. This migration guide should show you everything you need to do to get your service working again: &lt;A href="https://developers.sinch.com/docs/in-app-calling/android/migration-to-fcm-v1/" target="_blank"&gt;https://developers.sinch.com/docs/in-app-calling/android/migration-to-fcm-v1/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Let me know if you have any further questions.&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;</description>
    <pubDate>Mon, 16 Sep 2024 13:33:00 GMT</pubDate>
    <dc:creator>Alex_Sberna</dc:creator>
    <dc:date>2024-09-16T13:33:00Z</dc:date>
    <item>
      <title>Error receiving push notifications</title>
      <link>https://community.sinch.com/t5/Discussion-Forum/Error-receiving-push-notifications/m-p/16084#M719</link>
      <description>&lt;P class=""&gt;I am fixing issues with an old Android application written in Kotlin that uses the Sinch service for video calls. However, when FCM was updated, I could no longer receive the notification for an incoming call. Could you help me with the steps to update Firebase data so I can receive these notifications again?&lt;/P&gt;</description>
      <pubDate>Sat, 14 Sep 2024 20:37:14 GMT</pubDate>
      <guid>https://community.sinch.com/t5/Discussion-Forum/Error-receiving-push-notifications/m-p/16084#M719</guid>
      <dc:creator>descoba</dc:creator>
      <dc:date>2024-09-14T20:37:14Z</dc:date>
    </item>
    <item>
      <title>Re: Error receiving push notifications</title>
      <link>https://community.sinch.com/t5/Discussion-Forum/Error-receiving-push-notifications/m-p/16086#M721</link>
      <description>&lt;P&gt;Hi descoba,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Recently FCM was updated to use OAuth2 security. This migration guide should show you everything you need to do to get your service working again: &lt;A href="https://developers.sinch.com/docs/in-app-calling/android/migration-to-fcm-v1/" target="_blank"&gt;https://developers.sinch.com/docs/in-app-calling/android/migration-to-fcm-v1/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Let me know if you have any further questions.&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;</description>
      <pubDate>Mon, 16 Sep 2024 13:33:00 GMT</pubDate>
      <guid>https://community.sinch.com/t5/Discussion-Forum/Error-receiving-push-notifications/m-p/16086#M721</guid>
      <dc:creator>Alex_Sberna</dc:creator>
      <dc:date>2024-09-16T13:33:00Z</dc:date>
    </item>
    <item>
      <title>Re: Error receiving push notifications</title>
      <link>https://community.sinch.com/t5/Discussion-Forum/Error-receiving-push-notifications/m-p/16089#M722</link>
      <description>&lt;P class=""&gt;&lt;STRONG&gt;Hi Alex, thank you very much for your response&lt;/STRONG&gt;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;I was able to implement my endpoints in the backend according to the guide you shared with me. However, I have a question: do I need to modify something in my Android application compared to how it worked with the previous version of FCM? I’m still not receiving my call notifications&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Sep 2024 02:40:56 GMT</pubDate>
      <guid>https://community.sinch.com/t5/Discussion-Forum/Error-receiving-push-notifications/m-p/16089#M722</guid>
      <dc:creator>descoba</dc:creator>
      <dc:date>2024-09-17T02:40:56Z</dc:date>
    </item>
    <item>
      <title>Re: Error receiving push notifications</title>
      <link>https://community.sinch.com/t5/Discussion-Forum/Error-receiving-push-notifications/m-p/16098#M728</link>
      <description>&lt;P&gt;I believe so, yes. This FAQ from google has more information about the deprecated endpoints and what endpoints you should be targeting instead: &lt;A href="https://firebase.google.com/support/faq#fcm-23-deprecation" target="_blank"&gt;https://firebase.google.com/support/faq#fcm-23-deprecation&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Sep 2024 16:47:49 GMT</pubDate>
      <guid>https://community.sinch.com/t5/Discussion-Forum/Error-receiving-push-notifications/m-p/16098#M728</guid>
      <dc:creator>Alex_Sberna</dc:creator>
      <dc:date>2024-09-17T16:47:49Z</dc:date>
    </item>
    <item>
      <title>Re: Error receiving push notifications</title>
      <link>https://community.sinch.com/t5/Discussion-Forum/Error-receiving-push-notifications/m-p/16143#M736</link>
      <description>&lt;P class=""&gt;Hello Alex, thanks again for your response. I am using the SDK in my Android Kotlin app, so I am not sending notifications through the endpoint, but directly from the &lt;SPAN class=""&gt;callUser&lt;/SPAN&gt; function.&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="java"&gt;fun callUser(user_id: String): Call? {
      val sinchClient = sinchClient ?: throw RuntimeException("Sinch Client is not created")
      return sinchClient.callController.callUser(user_id, MediaConstraints(true))
    }&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;I have implemented everything from the push examples and the documentation, but I’m not sure if I’m missing something since I haven’t been able to receive calls.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Sep 2024 03:32:29 GMT</pubDate>
      <guid>https://community.sinch.com/t5/Discussion-Forum/Error-receiving-push-notifications/m-p/16143#M736</guid>
      <dc:creator>descoba</dc:creator>
      <dc:date>2024-09-25T03:32:29Z</dc:date>
    </item>
    <item>
      <title>Re: Error receiving push notifications</title>
      <link>https://community.sinch.com/t5/Discussion-Forum/Error-receiving-push-notifications/m-p/16168#M743</link>
      <description>&lt;P class=""&gt;Hi Alex, sorry for the inconvenience. Any updates?&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2024 18:39:56 GMT</pubDate>
      <guid>https://community.sinch.com/t5/Discussion-Forum/Error-receiving-push-notifications/m-p/16168#M743</guid>
      <dc:creator>descoba</dc:creator>
      <dc:date>2024-09-26T18:39:56Z</dc:date>
    </item>
    <item>
      <title>Re: Error receiving push notifications</title>
      <link>https://community.sinch.com/t5/Discussion-Forum/Error-receiving-push-notifications/m-p/16169#M744</link>
      <description>&lt;P&gt;Hi, no inconvenience! Sorry for taking so long to get back with you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I conferred with the team and they suggested something else might be going on, so they said you should &lt;A href="https://community.sinch.com/t5/General-Support/Sinch-Customer-Support-Process/td-p/7408" target="_self"&gt;open up a support ticket&lt;/A&gt;. The support specialists will be better able to help you troubleshoot and check things.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2024 18:48:47 GMT</pubDate>
      <guid>https://community.sinch.com/t5/Discussion-Forum/Error-receiving-push-notifications/m-p/16169#M744</guid>
      <dc:creator>Alex_Sberna</dc:creator>
      <dc:date>2024-09-26T18:48:47Z</dc:date>
    </item>
  </channel>
</rss>

