Closed missinglink closed 9 years ago
Hey peter, can you dump your ~/.ssb/manifest.json
file for me?
oh hai @pfraze, still alive! when I left at 4:30am I assumed you were going to miss your flight...
it seems to me as an uneducated outsider that the error message invite,create
seems to indicate that it's being interpreted as [invite,create]
rather than invite.create
?
also worth noting I didn't install it globally, instead I'm running the latest master@HEAD
of this repo with the latest npm install
deets on node 10.38
, so maybe that's different from what was published in npm.
$ cat ~/.ssb/manifest.json
{
"add": "async",
"publish": "async",
"get": "async",
"getPublicKey": "async",
"getLatest": "async",
"whoami": "async",
"auth": "async",
"relatedMessages": "async",
"getLocal": "async",
"query": "source",
"createFeedStream": "source",
"createHistoryStream": "source",
"createLogStream": "source",
"messagesByType": "source",
"messagesLinkedToMessage": "source",
"messagesLinkedToFeed": "source",
"messagesLinkedFromFeed": "source",
"feedsLinkedToFeed": "source",
"feedsLinkedFromFeed": "source",
"followedUsers": "source",
"gossip": {
"seeds": "async",
"peers": "sync",
"connect": "async"
},
"blobs": {
"get": "source",
"has": "async",
"add": "sink",
"ls": "source",
"want": "async",
"wants": "sync"
},
"invite": {
"create": "async",
"use": "async",
"addMe": "async"
},
"friends": {
"all": "async",
"hops": "async"
},
"local": {
"get": "sync"
},
"phoenix": {
"createEventStream": "source",
"getIndexCounts": "async",
"createInboxStream": "source",
"createAdvertStream": "source",
"getRandomAdverts": "async",
"markRead": "async",
"markUnread": "async",
"toggleRead": "async",
"isRead": "async",
"subscribe": "async",
"unsubscribe": "async",
"toggleSubscribed": "async",
"isSubscribed": "async",
"getMyProfile": "async",
"getProfile": "async",
"getAllProfiles": "async",
"getNamesById": "async",
"getNameTrustRanks": "async",
"getName": "async",
"getIdsByName": "async",
"getActionItems": "async"
}
}
[1] https://gist.github.com/missinglink/c6e4c71b2f6af74780c0
Still alive and made the flight :v: party victory
it seems to me as an uneducated outsider that the error message invite,create seems to indicate that it's being interpreted as [invite,create] rather than invite.create?
Good thought but that's just the tokenized form leaking through in our error output
also worth noting I didn't install it globally, instead I'm running the latest master@HEAD of this repo with the latest npm install deets on node 10.38, so maybe that's different from what was published in npm.
That should be right, and your manifest looks right. Are you running these commands on your server via ssh?
My guess is that it is attempting authorize with keys that do not have master
permissions.
Yeah turns out his home directory was being set to something incorrect by his service-maintainer tools, causing the server process to use a different .ssb
than the command was.
heyo, I set up a pub server here http://ssbc.wiz.co.nz which seems to be working fine except I cannot execute the commands
sbot invite.create
orsbot invite.addMe
from the readme, any ideas?