diff --git a/impl/daemon-signin.fish b/impl/daemon-signin.fish
index 2c00780dcc80f31c1075183336ecdb83e53f4ca7..e69d7e120b978692d42a898b7a24164763302655 100755
--- a/impl/daemon-signin.fish
+++ b/impl/daemon-signin.fish
@@ -1,7 +1,9 @@
 #!/usr/bin/fish
 
 test -z $_openid; and echo 'openid is unset.' ; and exit 1
-set _url "https://www.teachermate.com.cn/wechat/wechat/guide/signin?openid=$_openid"
+set _url "https://v18.teachermate.cn/wechat/wechat/guide/signin?openid=$_openid"
+set _resign_url "https://v18.teachermate.cn/api/v1/wechat/re-auth?m=s_signin&code=$_openid&state=$_openid"
+#simply reuse openid for resign
 
 source ../config.fish
 
@@ -59,6 +61,8 @@ while true
     test -f $tmpfl; and sleep $_monitor_interval
     date
     curl -L "$_url" -v 2>$cookiefl > $tmpfl
+    #First sign is not necessary now, but maybe useful later
+    curl -L "$_resign_url" -v 2>$cookiefl > $tmpfl
     if grep '{"data":\[\],"msg":"unauthorized"}' $tmpfl
         on_badid
         continue