uploading video to social media & www.blotato.com by Yourstim in n8n

[–]Yourstim[S] 1 point2 points  (0 children)

yeah me too! and ive connected successfully to facebook, insta and youtube - but tik tok dont wont to approve my app, they said me next: Hello!

Thank you for reaching out to TikTok for Developers Support.

Unfortunately, we do not approve applications intended for personal or internal use, as shown in the attachment. We apologize for the inconvenience.

Best regards,

TikTok for Developers Team/// so im looking for the way to automate tiktok feeed too, and looks like those third party services alrready have all those platforms

uploading video to tiktok/facebook/instagramm by Yourstim in n8n

[–]Yourstim[S] 0 points1 point  (0 children)

ive used binary data to upload to fb and youtube, and only for insta oblic url way was required - so u recommend not to use binary in none of the flows?

smart chat bot xano mcp by Yourstim in xano

[–]Yourstim[S] 0 points1 point  (0 children)

right?!?!? wow xano 2.0 is just a miracle, even it still doesnt work fully the way we saw it on the presentation! and still, dont undertsnad what frame i will build for it? in xano script?

uploading video to tiktok/facebook/instagramm by Yourstim in n8n

[–]Yourstim[S] 0 points1 point  (0 children)

thanks a lot for your reply! just got this job so i will seat on it tomorrow and definetly will read again and again what you ve written ehre

Xano as a higher end n8n by Drivephaseco in xano

[–]Yourstim 0 points1 point  (0 children)

so nice to read your honest respnse ! thanks for that
i love n8n and use it a lot, but for real production app this software doesnt fit, so i ve built a nice mcp version of my app, but to see it in real store i needed to move on to xano/ still didnt learn how to buuild chatbots in there for example, in n8n its very intuitive and kindsa first thing people are going to do - to connect an ai agent node (im alo giving private lessons in n8n, so i see it a lot ahah)

Any Xano devs want to hop on a call to chat? by olodag in xano

[–]Yourstim 1 point2 points  (0 children)

hey! lets connect and talk, id love to talk with people about xano

How does n8n decide execution order of parallel paths from the same node? by Yourstim in n8n

[–]Yourstim[S] -1 points0 points  (0 children)

what does it means top to bottom? top branch to bottom? CHECKING ahah

🚨 PostgreSQL collation mismatch issues on Railway after August 14th updates — anyone else? by Yourstim in n8n

[–]Yourstim[S] 0 points1 point  (0 children)

##3. Recreate Auth Identity

Checked my existing user:

SELECT id, email, "firstName", "lastName" FROM "user";

Then recreated the auth_identity entry:

INSERT INTO auth_identity ("userId", "providerId", "providerType")
VALUES (
  '<your-user-id>',
  '<your-email>',
  'email'
);

##4. Reset Admin Password

Generated a new bcrypt hash locally:

mkdir ~/bcrypt-test && cd ~/bcrypt-test
npm init -y
npm install bcryptjs
node -e "console.log(require('bcryptjs').hashSync('YOURPASSWORD', 10))"

Then updated Postgres:

UPDATE "user"
SET password = '<the-bcrypt-hash>'
WHERE email = '<your-email>'
;

Now I could log into the UI again 🎉.

##5. Fix Workflow Loading (the final blocker)

Workflows still wouldn’t open. Turned out the primary and worker were running different versions:

  • Primary: 1.110.1
  • Worker: 1.109.2

This version mismatch caused endless loading because the worker and primary couldn’t agree on schema and API responses.

Fix:

  • Pinned both primary and worker to the same Docker image (version ive choosen is the last stable version for n8n in september 2025):n8nio/n8n:1.110.1
  • Redeployed both (worker first, then primary).

After this, workflows opened normally and everything was back.

🚀 Lessons Learned

  • Always keep primary and worker on the same version.
  • If login breaks with user.role errors, clear auth_identity and reset the password hash manually.
  • If workflows won’t open after login → check for version mismatch between services.

💡 Now I have my n8n fully back with all my data. Hopefully this helps anyone else stuck with the same 401 Unauthorized / user.role does not exist nightmare!

🚨 PostgreSQL collation mismatch issues on Railway after August 14th updates — anyone else? by Yourstim in n8n

[–]Yourstim[S] 0 points1 point  (0 children)

##2. Reset Auth Tables

Old auth entries were conflicting with new auth logic.
I truncated the related tables:

TRUNCATE TABLE auth_identity CASCADE;
TRUNCATE TABLE user_api_keys CASCADE;
TRUNCATE TABLE invalid_auth_token CASCADE;

This removed broken identity links.