How to stream from PC to TikTok Without a stream key using OBS, please note that this method requires that you have unlocked "mobile gaming".
This tutorial will show you how to set up your own NGINX rtmp streaming server on Windows 10
nginx download http://nginx-win.ecsds.eu/download/
rtmp code for nginx config
rtmp {
server {
listen 1935; # Listen on standard RTMP port
chunk_size 4000;
buflen 10s;
application show {
live on;
record off;
}
}
}