You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Basically, yes. At this time the query parameters requires a pre-constructed TinCan.Agent or TinCan.Group. We can leave this open as a feature enhancement, there are probably other places that could use this kind of sugar.
tincan.getStatements({
params: {
agent: {mbox: "mailto:[email protected]"}
}
});
gives a mysterious error about version.
tincan.getStatements({
params: {
agent: new TinCan.Agent({mbox: "mailto:[email protected]"})
}
});
This works just fine. Can we not parse out an agent out of the provided object?
The text was updated successfully, but these errors were encountered: