Should a OAuth 2.0 Client send his client_id and client_secret only at his initial request for authorization? Or at every request he sends to the Authorization/Resource-Server? Thanks in advance!
@Edit 1: We try to implement the 'Resource Owner Password Credentials'-Flow.
@Edit 2: My guess is that you dont need to send it after you aquired the Access Token. Cause when you already have the access token, the client sends his request directly to the Resource Server. But if you need a refresh token and request one from the Authorization Server, then you need to send client_id and client_secret too. Or am i mistaken?