After reviewing the spec and documentation, it seems that support for include_site=true only works when the origin is a root domain (eTLD+1). I have a use case where the root domain is shared across a few different sites/instances (app.a.example.com, app.b.example.com). I'd like to isolate them and have the session only be scoped to each subdomain (*.a.example.com *.b.example.com), rather then shared across the root domain.
Is there a reason why the include_site functionality was scoped only to the root domain and would it be possible to expand that functionality to include subdomains? If not, do you have any suggestions on how I could isolate the sessions across different subdomains?
Note: This is somewhat related to a previous conversation I saw and was curious if this is still a possibility.