Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
OAuth 规范说时间戳以自 1970 年 1 月 1 日 00:00:00 GMT 以来的秒数表示。 时间戳值必须是正整数,并且必须等于或大于先前请求中使用的时间戳。
我需要它给我们,它是我的 Android 应用程序来发布 http 帖子
对于当前时间戳使用System.currentTimeMillis()/1000
System.currentTimeMillis()/1000
试试这个:
int authSeconds = (int)(new Date().getTime()/1000);
你可以使用: