I am using ckeditor 3 and ckfinder. When I press on the picture button in ckeditor I see the popup of ckfinder. I can select a picture and it will be inserted in the content of ckeditor. Now I would like to pass some query string parameters in the ckfinder popup. In the connector I would like to read this query string parameter.
For example:
connectorBuilder.SetAuthenticator(customAuthenticator)
.LoadConfig()
.SetRequestConfiguration(
(request, config) =>
{
var someQueryStringParameter = request.QueryParameters.SingleOrDefault(s => s.Key == "someQueryStringParameter").Value;
});