Hi,
I am looking for a way to add a query parameter in redirect_uri coming with request. it might be a way to do this is update context.request.query.redirect_uri in rules. I dont think its possible but still
function update_rediirect (user, context, callback) {
context.request.query.redirect_uri = context.request.query.redirect_uri + '?param=value';
callback(null, user, context)
}
Is there any other way to achieve this?
Thanks.