问题标签 [discogs-api]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
node.js - Discogs API:除了“401 您必须进行身份验证才能访问此资源”之外,什么也得不到。
我按照文档说的那样做了 Oauth 流程,得到了 oauth_token 和 oauth_token_secret,然后从我的 nodejs 服务器我尝试了这个请求:
我还尝试删除“授权”中的所有参数,除了我的两个令牌但没有工作。有什么线索吗?
c# - Discogs,使用 DiscordClient 访问 API
我想构建一个我自己使用的应用程序,所以我的目标是通过 Token 进行简单的身份验证。我从 Discog 获得了我的令牌,我知道它有效,因为我在第三方应用程序中尝试过它。
我正在使用DiscogClient,它似乎是最受欢迎的客户端。
我按照以下方式使用示例:
当我运行该代码时,我没有任何异常,但是如果我在调试模式下查看 observable var,则没有任何结果。
我迷路了,正在寻求帮助。
提前致谢
python - Python Selenium 找不到要发送 _keys 的字段元素
覆盖或框架我正在尝试使用 Python 代码,以便在发货时使用特定字段中的跟踪号更新我的 Discogs。
当我检查该字段框时,这是代码(也显示在我的附件中)
我一直擅长使用driver.find_element_by_ID
Text
和Name
导航。但无法找出使用什么来定位此字段框元素,因此我可以使用search.send_keys
. 我已经尝试过xpath
,class
但没有返回无法找到元素的运气错误。
discord.py - discord.py:关卡系统 - 齿轮
每当我尝试运行它下面的代码时,它似乎都不起作用。我对这一切真的很陌生。
events - 如果成员说出特定单词,则自动将其静音 discord py rewrite
我想要的是如果用户在他们发送的消息中使用省略号,则暂时将其静音。ctx.send
不起作用,机器人不会向频道发送消息。它说不self.client.add_roles
存在。
Muted
是我创建的没有任何发送消息权限的角色。
知道为什么吗?一些帮助将不胜感激。我在用着
AttributeError: 'Message' object has no attribute 'send'
这是我得到的错误
[编辑]
我查看了文档并做了这个,它有效,感谢您的支持:)
javascript - 在 Ajax 中,如何为多个条件编写“标题”?
作为一个初学者,我在使用 Ajax (with Discogs API) 时遇到了一些问题.. 获取 discogs 请求令牌,discogs 说
https://www.discogs.com/developers#page:authentication,header:authentication-discogs-auth-flow
但是,如何写这个标题?下面是我尝试的代码,但我知道这是不合适的。
python - DIScord.py 齿轮
我在一个 main.py 中编写了我的机器人。但是,当我查看代码来更改某些内容时,这是不可能的。我尝试搜索并找到有关 cogs。我正在尝试使用 cogs 组织我的 discord.py 机器人并收到以下错误
我的 Cats.py 是
我正在使用将 cogs 添加到 main.py
请帮助提前谢谢
javascript - Rate limit the number of request made from react client to API
I'm using React and fetch in the client to make requests to the Discogs API. In this API, there's a limit of max 60 request per minute. For managing this Discogs is adding custom values like "remaining requests", "used requests" or "maximum allowed requests", on the response headers but due to cors those headers cannot be readed.
So what I decided to do is to create a request wrapper for this API, from where I could:
- Define a time window (in this case 60 secs).
- Define the max requests allowed to do in this time window.
- Queue the received requests to be processed according to the limits.
- Be able to cancel the requests and pull them out of the queue.
I've managed to do a working example using a singleton Object where the jobs are queued and managed with setTimeout
function to delay the call of the request.
This works for me when using simple callbacks, but I don't know how to return a value to the React component and how to implement it with Promises instead of callbacks (fetch).
I also don't know how to cancel the timeout or the fetch request from the react component.
You can check this example, where I've simplified it. I know that maybe that's not the best way to do it or maybe this code is shit. That's why any help or guidance on it would be very much appreciated.
python - 缺少参数的错误消息,discord.py
我对编码很陌生,目前正在开发一个不和谐的机器人,我想这样做,如果 kick 命令缺少成员 arg,机器人将回复“找不到用户”。下面的代码目前在一个齿轮中。