keon94 commented on issue #6244:
URL: 
https://github.com/apache/incubator-devlake/issues/6244#issuecomment-1769877928

   @neraath 
   
   Could you make a python file somewhere inside `python/plugins/azuredevops` 
and paste the below into it run and see what happens?
   ```python
   from azuredevops.main import AzureDevOpsPlugin
   
   plugin = AzureDevOpsPlugin()
   
   params = {
       "token": "<your-token>",
       "name": "something",
       "organization": "<your-org>",
       "project": "<your-project>",
   }
   
   connection = plugin.connection_type(**params)
   scopes = plugin.make_remote_scopes(connection, None)
   print(scopes)
   
   ```
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to