Nextcloud Talk App - Authentication on Server fails

Nextcloud version (eg, 29.0.5): [Nextcloud Hub 8] (29.0.4)
Operating system and version (eg, Ubuntu 24.04): Ubuntu 22.04
Apache or nginx version (eg, Apache 2.4.25): Nginx 1.23.1
PHP version (eg, 8.3): 8.1

The issue you are facing:

When installing Talk App for Android and connecting to server with installed talk, running coturn and running signaling server, the app shows the loading circle for ever after first connection.

After closing the app with force and reopening it the chats are shown correctly. Sending and receiving messages is working. BUT only if the app is open. The app does not receive any push notifications.

Running nocc notification:test-push --talk <user> does lead to push on mobile browser and installed nextcloud app on other phone, but not on the talk app. The cli also states that there is no talk app identified.

Issue is existing on different Android phones with different users of my server.

Is this the first time you’ve seen this error? (Y/N): Y

Steps to replicate it:

  1. Install Talk App on Android
  2. Connect to server in the app
  3. Wait forever

The output of your Nextcloud log in Admin > Logging:

/appinfo/app.php is deprecated, use \OCP\AppFramework\Bootstrap\IBootstrap on the application class instead

The info in the nextcloud talk app:

**Firebase-Push-Token**
No Firebase-Tush-Poken Set. Please create a Error Report.
**Newest Firebase-Push-Token-Generation**
Unknown
**Newest-Firbease-Push-Token-Fetch**
Unknown

....

**Current Push-Registration on Server**
Not yet registered on Server

The output of your config.php file in /path/to/nextcloud (make sure you remove any identifiable information!):

<?php
$CONFIG = array (
  'instanceid' => '<sensible>',
  'passwordsalt' => '<sensible>',
  'secret' => '<sensible>',
  'allow_local_remote_servers' => true,
  'blacklisted_files' =>
  array (
    0 => '.htaccess',
    1 => 'Thumbs.db',
    2 => 'thumbs.db',
  ),
  'trusted_domains' =>
  array (
    0 => '<sensible>',
    1 => '<sensible>',
    2 => '<sensible>',
  ),
  'datadirectory' => '/var/nextcloud_data',
  'share_folder' => '/Mit mir geteilt',
  'overwrite.cli.url' => '<sensible>',
  'dbtype' => 'pgsql',
  'version' => '29.0.4.1',
  'dbname' => 'nextcloud_db',
  'dbhost' => '127.0.0.1',
  'dbport' => '5432',
  'dbtableprefix' => 'oc_',
  'dbuser' => 'nextcloud_db_user',
  'dbpassword' => '<sensible>',
  'installed' => true,
  'default_phone_region' => 'DE',
  'enable_previews' => true,
  'enabledPreviewProviders' =>
  array (
    0 => 'OC\\Preview\\PNG',
    1 => 'OC\\Preview\\JPEG',
    2 => 'OC\\Preview\\GIF',
    3 => 'OC\\Preview\\BMP',
    4 => 'OC\\Preview\\XBitmap',
    5 => 'OC\\Preview\\Movie',
    6 => 'OC\\Preview\\PDF',
    7 => 'OC\\Preview\\MP3',
    8 => 'OC\\Preview\\TXT',
    9 => 'OC\\Preview\\MarkDown',
  ),
  'preview_max_x' => '2048',
  'preview_max_y' => '2048',
  'preview_max_scale_factor' => 1,
  'memcache.local' => '\\OC\\Memcache\\APCu',
  'overwriteprotocol' => 'https',
  'logtimezone' => 'Europe/Berlin',
  'auth.bruteforce.protection.enabled' => true,
  'maintenance' => false,
  'mail_smtpmode' => 'smtp',
  'mail_smtpauthtype' => 'LOGIN',
  'mail_smtpsecure' => 'ssl',
  'mail_from_address' => 'nextcloud',
  'mail_domain' => '<sensible>',
  'mail_smtpauth' => 1,
  'mail_smtphost' => '<sensible>',
  'mail_smtpport' => '465',
  'mail_smtpname' => '<sensible>',
  'mail_smtppassword' => '<sensible>',
  'theme' => '',
  'loglevel' => 2,
  'updater.release.channel' => 'stable',
  'twofactor_enforced' => 'false',
  'twofactor_enforced_groups' =>
  array (
  ),
  'twofactor_enforced_excluded_groups' =>
  array (
    'overwriteprotocol' => 'https',
    0 => 'Bots',
  ),
  'mail_sendmailmode' => 'smtp',
  'mysql.utf8mb4' => true,
  'ldapIgnoreNamingRules' => false,
  'trusted_proxies' =>
  array (
    0 => '127.0.0.1',
    1 => '::1',
    2 => '<sensible>',
    3 => '<sensible>',
  ),
  'filelocking.enabled' => true,
  'memcache.locking' => '\\OC\\Memcache\\Redis',
  'redis' =>
  array (
    'host' => '/var/run/redis/redis-server.sock',
    'port' => 0,
    'timeout' => 0.5,
    'dbindex' => 1,
  ),
  'encryption.legacy_format_support' => false,
  'maintenance_window_start' => 1,
);

The output of your Apache/nginx/system log in /var/log/____:

No errors

Issue was a blocker of firbase url by Adguard

This topic was automatically closed 8 days after the last reply. New replies are no longer allowed.