首页 > 解决方案 > 基本的 Pastebin 记录系统

问题描述

我已经创建了一个非常基本的用户:使用 pastebin.com 的登录系统我已经这样做了:

Dim checker As String = username + ":" + password
Dim login1 As Boolean = ss.DownloadString("https://pastebin.com/raw/fikBDHww").Contains(checker)

If login1 = true Then
Console.Writeline("Correct") 
Else
Console.Writeline("Wrong Login")

但是,我想用它添加到期系统 - 例如,我将如何在到期日期中读取:12:12:2240在带有 user:pass 的 pastebin 中。

谢谢阅读 :)

标签: vb.net

解决方案


推荐阅读