微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

将JWT访问令牌放置在URL中的位置

如何解决将JWT访问令牌放置在URL中的位置

我想在Chrome浏览器中查看JSON数据集,但收到以下消息:

enter image description here

根据我的研究,看来我需要在后端发送对令牌的访问权限才能访问URL和读取数据。如何使用SSIS C#发送JWT访问令牌?

这是我到目前为止的代码

#region Namespaces

using System;

using System.Data;

using Microsoft.sqlServer.Dts.Pipeline.Wrapper;

using Microsoft.sqlServer.Dts.Runtime.Wrapper;

using System.Net;

using Microsoft.sqlServer.Dts.Runtime;

using System.IO;

using System.Runtime.Serialization.Json;

using System.Runtime.Serialization;

using System.Collections.Generic;

using System.Text;

using System.Linq;

using System.Net.Http;
using System.Net.Http.Headers;



#endregion


#region Class



[Microsoft.sqlServer.Dts.Pipeline.SSISScriptComponentEntryPointAttribute]

public class ScriptMain : UserComponent

{


    #region Methods



    /// <summary>Outputs records to the output buffer</summary>

    public override void CreateNewOutputRows()

    {


        //Set Webservice URL
        ServicePointManager.Expect100Continue = true;
        ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;

        string wUrl = Variables.URL;

        try

        {



            //Call getWebServiceResult to return our Article attributes

            List<Payment> outPutResponse = GetWebServiceResult(wUrl);


            if (outPutResponse != null)

            {


              

                foreach (Payment py in outPutResponse) 

                {

                    //Output main attributes of Article

                    Output0Buffer.AddRow();



                    Output0Buffer.column = DateTime.Parse(py.column);
                   


                }

            }

        }

        catch (Exception e)

        {

            FailComponent(e.ToString());

        }


    }


    /// <summary>

    /// Method to return our list articles

    /// </summary>

    /// <param name="wUrl">The web service URL to call</param>

    /// <returns>An object that contains a list of Articles</returns>



    private List<Payment> GetWebServiceResult(string wUrl)

    {

        //var client = new RestClient(wUrl);
        //var request = new RestRequest(Method.GET);
        //request.AddHeader("content-type","application/json");
        //request.AddHeader("authorization","Bearer ACCESS_TOKEN");
        //IRestResponse response = client.Execute(request);


        HttpWebRequest httpWReq = (HttpWebRequest)WebRequest.Create(wUrl);

        // Add an Accept header for JSON format.    

        httpWReq.Headers.Add(HttpRequestHeader.Authorization,"Bearer " +
            "Authorization Code Here");




        httpWReq.Method = "GET";

        httpWReq.ContentType = "application/json";

        HttpWebResponse httpWResp = (HttpWebResponse)httpWReq.GetResponse();



        List<Payment> jsonResponse = null;


        try

        {
            Stream responseStream = httpWResp.GetResponseStream();

            /*  //Get the stream of JSON
              Stream dataStream = null;
              StreamReader reader = null;

              string responseFromServer = null;

              // Get the stream containing content returned by the server.
              dataStream = httpWResp.GetResponseStream();
              // Open the stream using a StreamReader for easy access.
              reader = new StreamReader(dataStream);
              // Read the content.
              responseFromServer = reader.ReadToEnd();
              */


            //Deserialize the JSON stream

            using (StreamReader reader = new StreamReader(responseStream))

            {
                //Deserialize our JSON

                DataContractJsonSerializer sr = new DataContractJsonSerializer(typeof(List<Payment>));

                jsonResponse = (List<Payment>)sr.Readobject(responseStream);

            }

        }

        //Output JSON parsing error

        catch (Exception e)

        {

            FailComponent(e.ToString());

        }

        return jsonResponse;


    }


    /// <summary>

    /// Outputs error message

    /// </summary>

    /// <param name="errorMsg">Full error text</param>

    private void FailComponent(string errorMsg)

    {

        bool fail = false;

        IDTSComponentMetaData100 compMetadata = this.ComponentMetaData;

        compMetadata.FireError(1,"Error Getting Data From Webservice!",errorMsg,"",out fail);


    }

    #endregion

}

#endregion

非常感谢您的协助!

绒毛 起毛 起毛 绒毛

解决方法

谢谢大家在这个问题上的帮助。

这是答案:

 private List<FacultyList> GetWebServiceResultJWT(string wUrl)
{
    ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
    string serverBaseAddress = wUrl.Substring(0,42);
    var accessToken = "your token";

    using (var client = new HttpClient())
    {
        client.DefaultRequestHeaders.Clear();
        client.BaseAddress = new Uri(serverBaseAddress);

        var contentType = new MediaTypeWithQualityHeaderValue("application/json");
        client.DefaultRequestHeaders.Accept.Add(contentType);

        client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer",accessToken);



        HttpResponseMessage message = client.GetAsync(wUrl.Substring(wUrl.Length - 48,48)).Result;

        if (message.IsSuccessStatusCode)
        {
            string inter = message.Content.ReadAsStringAsync().Result.ToString();

            Payment result = JsonConvert.DeserializeObject<Payment>(inter);
            List<FacultyList> facultyList = result.facultyList.Cast<FacultyList>().ToList();
            return facultyList; // return type should be List<facultyList>


        }



        return null;
    }

    /* string accessToken = "yourtoken"; // or your JWT Token

     var request = new HttpRequestMessage(HttpMethod.Get,wUrl);
     request.Headers.Authorization = new AuthenticationHeaderValue("Bearer",accessToken); 

     HttpClient client = new HttpClient();
     HttpResponseMessage response = client.SendAsync(request).Result; 
     return null;
}





private void FailComponent(string errorMsg)

{

    bool fail = false;

    IDTSComponentMetaData100 compMetadata = this.ComponentMetaData;

    compMetadata.FireError(1,"Error Getting Data From Webservice!",errorMsg,"",out fail);


}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。