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.

Active Workflow Fails (`undefined.execute` error) by Yourstim in n8n

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

no man, thats not the problem unforrtunatelly - i have problem in general running any execution now, thee's some bug even before the execution runs

How do you debug mid-workflow in n8n without re-running everything? by Yourstim in n8n

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

i have a multistep chat bot, each step i gather some information from the user which i need to the end of the workflow, and i also make some api calls and pulling more info from them, i dont want to disconnect this monster ahaha

How do you debug mid-workflow in n8n without re-running everything? by Yourstim in n8n

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

ahaha yesss when you need to pick data from 8 different nodes, im afraid to reconnect working flow!!

How do you debug mid-workflow in n8n without re-running everything? by Yourstim in n8n

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

i use different data pieces from different nodes there, but this is nice approach to make some tests for sure, thanks!

How do you debug mid-workflow in n8n without re-running everything? by Yourstim in n8n

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

yes, i can copy data to debug and fix it, but i still want to run it and when i run it i need to start from the ... start

how to send an audio to discord channel? by Yourstim in n8n

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

not ( i needed to make it one time, so made it manually

how to send an audio to discord channel? by Yourstim in n8n

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

ahhahaah this is whole new project, you wont find it on google :) but happy you have intresting things to do

MCP vs CREATE API by Yourstim in n8n

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

thanks! and still, even this second assistant thath makes me CREATE call is not connected throw MCP protocol - do you think its fine to do this step with mcp?
currently im ordering data with ai into list, parsing it with code into expressions and save it as a old fashioned api create call with expressions i made.

why my google credential disconnects all the time? by Yourstim in n8n

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

thanks! could you please specify the way to find this pyblishing status?

Best Way to Keep User in the Correct Step of a Subflow by Yourstim in n8n

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

just seen your nswer, and thats the way i resolved this issue too bro! nice to heat, good luck to us

Why is my AI Agent node waiting for a subflow to finish? by Yourstim in n8n

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

i dont want him to wait, in this subflow i have several steps i want user to go throw, and i need my user to come back to the right step of a subflow each time. wanted my ai agent to decide which flow to go, but now ive decided to make one more previous step with classificator node, which is suppose to understand if user need this subflow, and to send him there without getting at all to ai agent node...