Trello - get a developer’s permanent key and confirmation code

I can use a temporary token, but I can’t get a permanent key !!!

This shows me this:

To complete the process, enter this verification code:
237963d7359aa898763a615e972d20ea

Question: where should I enter this control number ????

Thank!

+4
source share
1 answer

To do this,

First go to this URL:

https://trello.com/1/authorize?key= 237963d7359aa898763a615e972d20ea & name = MYAPPNAME & expiration = never & response_type = marker & scope = read, write

, , - : c6b832fb7101sdkjfsdkjfhsdmnfsmdnfsdmnf9d5fe53f3d8asdasdee

, manatee.trello , .

 ManateeSerializer serializer = new ManateeSerializer();
 TrelloConfiguration.Serializer = serializer;
 TrelloConfiguration.Deserializer = serializer;
 TrelloConfiguration.JsonFactory = new ManateeFactory();
 TrelloConfiguration.RestClientProvider = new RestSharpClientProvider();
 TrelloAuthorization.Default.AppKey = "237963d7359aa898763a615e972d20ea";
 TrelloAuthorization.Default.UserToken = "c6b832fb7101sdkjfsdkjfhsdmnfsmdnfsdmnf9d5fe53f3d8asdasdee";
+3

Source: https://habr.com/ru/post/1547237/


All Articles